14 lines
278 B
YAML
14 lines
278 B
YAML
- name: Setup a new K3s cluster
|
|
hosts: all
|
|
gather_facts: yes
|
|
become: yes
|
|
roles:
|
|
- { role: k3s, tags: k3s-cluster }
|
|
|
|
- name: Deploy applications into Kubernetes cluster
|
|
hosts: kube-primary
|
|
gather_facts: yes
|
|
become: yes
|
|
roles:
|
|
- { role: apps, tags: apps }
|