This commit is contained in:
Hrankin, Aleksandr (contracted)
2026-02-19 11:34:13 +00:00
commit f243f440c3
191 changed files with 6183 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
- name: setup powerdns
hosts:
- dev-kyiv01-vm-dns-main-01
become: true
roles:
- role: install_docker
- role: dns/push_powerdns_configs_to_node
vars:
dns_stack_root: /opt/dns-stack
- role: node/execute_command
vars:
chdir: "/opt/dns-stack"
command: "docker compose up -d"
# ansible-playbook playbooks/dns/install_powerdns.yml -i inventory.ini

View File

@@ -0,0 +1,17 @@
---
- name: setup systemd resolved config
hosts:
- dev-kyiv01-vm-dns-main-01
- dev-kyiv01-vm-ntp-main-01
- dev-kyiv01-vm-ceph-main-01
- dev-kyiv01-vm-ceph-main-02
- dev-kyiv01-vm-ceph-main-03
- dev-kyiv01-vm-k8s-master-01
- dev-kyiv01-vm-k8s-worker-01
become: true
roles:
- role: dns/setup_systemd_resolved_config
vars:
dns_ip: 192.168.0.100
# ansible-playbook playbooks/dns/setup_systemd_resolved_config.yml -i inventory.ini