diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-03-03 21:20:59 +0100 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-03-03 21:20:59 +0100 |
commit | 0182fe51736e7610d4a63fe6767d08ffe5c5938c (patch) | |
tree | 0025603ddfb75ae556d1f949be4c7882ea972ee9 /ansible/playbooks/bootstrap.yml | |
parent | f8f9666a8e630d6d64a883bca25ccc4ba98d73e4 (diff) |
ansible: add dynamic inventory & playbooks to install k3s hosts
bootstrap.yml will now be used to install any configuration on new
provisionned servers, based on tags given by the dynamic inventory
Diffstat (limited to 'ansible/playbooks/bootstrap.yml')
-rw-r--r-- | ansible/playbooks/bootstrap.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ansible/playbooks/bootstrap.yml b/ansible/playbooks/bootstrap.yml new file mode 100644 index 0000000..c9d75a4 --- /dev/null +++ b/ansible/playbooks/bootstrap.yml @@ -0,0 +1,8 @@ +--- +# Bootstrap playbook for post-provisioning tasks. +- name: Include Docker playbook if the host has the 'tag_docker' tag + ansible.builtin.import_playbook: docker.yml + +- name: Include K8s playbook if the host is a k3s master or worker + ansible.builtin.import_playbook: k8s.yml +... |