-
Notifications
You must be signed in to change notification settings - Fork 3
/
alpine-k8s.yaml
41 lines (35 loc) · 882 Bytes
/
alpine-k8s.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
- name: Alpine linux cri-o install
hosts: workers:controlplane
gather_facts: true
roles:
- role: alpine_apkrepo
- role: alpine_kernelparams
- role: alpine_crio
- name: Alpine linux install kubelet
hosts: workers:controlplane
gather_facts: true
roles:
- role: alpine_kubelet
- name: Alpine linux kubeadm init
hosts: control1
gather_facts: true
roles:
- role: alpine_kubeadm_init
- name: Alpine linux kubeadm join controlplane
hosts: control23
gather_facts: true
roles:
- role: alpine_kubeadm_join_control
- name: Alpine linux kubeadm join workers
hosts: workers
gather_facts: true
roles:
- role: alpine_kubeadm_join_workers
- name: Alpine linux after kubeadm join
hosts: workers:controlplane
gather_facts: true
roles:
- role: alpine_kubeadm_afterjoin
- role: alpine_calico
- role: alpine_longhorn