blob: c9d75a47d6692260de99ee619ad1a45e7cff51fe (
plain)
1
2
3
4
5
6
7
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
...
|