Files
homelab/10-sno-hub-cluster/install.yml
2025-03-22 17:52:41 -05:00

22 lines
560 B
YAML

---
- name: Run all tasks necessary to configure matchbox to install the cluster
hosts: 127.0.0.1
connection: local
gather_facts: true
vars_prompt:
- name: freeipa_password
prompt: FreeIPA password for admin user
tasks:
- name: Deploy DNS entries for cluster via Terraform
community.general.terraform:
project_path: 01-dns/
variables:
freeipa_password: "{{ freeipa_password }}"
state: present
force_init: true
- ansible.builtin.include_tasks:
file: 02-dhcp/ip-reservations.yml