67 lines
972 B
YAML
67 lines
972 B
YAML
---
|
|
- hosts: localhost
|
|
gather_facts: no
|
|
become: yes
|
|
roles:
|
|
- role: provision/delete
|
|
|
|
- hosts: localhost
|
|
gather_facts: no
|
|
become: yes
|
|
roles:
|
|
- role: provision/create
|
|
|
|
- hosts: baremetal
|
|
gather_facts: yes
|
|
become: yes
|
|
roles:
|
|
- role: provision/pre
|
|
- role: provision/cgroup
|
|
|
|
- hosts: localhost
|
|
gather_facts: no
|
|
become: yes
|
|
roles:
|
|
- role: provision/start
|
|
|
|
- hosts: baremetal
|
|
gather_facts: yes
|
|
become: yes
|
|
roles:
|
|
- role: provision/enable-ssh
|
|
|
|
- hosts: k3s_cluster
|
|
gather_facts: yes
|
|
become: yes
|
|
roles:
|
|
- role: prereq
|
|
- role: download
|
|
|
|
- hosts: master
|
|
become: yes
|
|
roles:
|
|
- role: k3s/master
|
|
|
|
- hosts: node
|
|
become: yes
|
|
roles:
|
|
- role: k3s/node
|
|
|
|
- hosts: master
|
|
become: yes
|
|
roles:
|
|
- role: k3s/post
|
|
|
|
- hosts: master
|
|
become: yes
|
|
roles:
|
|
- role: k3s/copy-config
|
|
|
|
- hosts: localhost
|
|
become: yes
|
|
roles:
|
|
- role: traefik
|
|
- role: nginx
|
|
- role: cert-manager
|
|
- role: authelia
|