mirror of
https://github.com/jcwimer/startup-infrastructure
synced 2026-03-24 14:24:43 +00:00
19 lines
424 B
YAML
19 lines
424 B
YAML
---
|
|
- name: Pre rke
|
|
hosts: kube-masters kube-workers
|
|
gather_facts: yes
|
|
serial: 100%
|
|
tasks:
|
|
- include: ../roles/kubernetes/tasks/pre-rke.yml
|
|
|
|
- name: Set up Kubernetes
|
|
hosts: localhost
|
|
tasks:
|
|
- include: ../roles/kubernetes/tasks/main.yml
|
|
|
|
- name: Post rke
|
|
hosts: kube-masters kube-workers
|
|
gather_facts: yes
|
|
serial: 100%
|
|
tasks:
|
|
- include: ../roles/kubernetes/tasks/post-rke.yml |