-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcluster-template-cdi-internal.yaml
230 lines (230 loc) · 7.15 KB
/
cluster-template-cdi-internal.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
apiVersion: cluster.x-k8s.io/v1beta1
kind: Cluster
metadata:
name: "${CLUSTER_NAME}"
spec:
clusterNetwork:
pods:
cidrBlocks: ["${POD_NETWORK_CIDR:=192.168.0.0/16}"]
services:
cidrBlocks: ["${SERVICE_CIDR:=10.96.0.0/12}"]
infrastructureRef:
apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
kind: VirtinkCluster
name: "${CLUSTER_NAME}"
controlPlaneRef:
apiVersion: controlplane.cluster.x-k8s.io/v1beta1
kind: KubeadmControlPlane
name: "${CLUSTER_NAME}-cp"
---
apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
kind: VirtinkCluster
metadata:
name: "${CLUSTER_NAME}"
spec:
controlPlaneServiceTemplate:
metadata:
namespace: ${VIRTINK_INFRA_CLUSTER_RESOURCES_NAMESPACE:=${NAMESPACE}}
type: "${VIRTINK_CONTROL_PLANE_SERVICE_TYPE:=NodePort}"
---
apiVersion: controlplane.cluster.x-k8s.io/v1beta1
kind: KubeadmControlPlane
metadata:
name: "${CLUSTER_NAME}-cp"
spec:
version: "${KUBERNETES_VERSION:=1.24.0}"
replicas: ${CONTROL_PLANE_MACHINE_COUNT}
machineTemplate:
infrastructureRef:
apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
kind: VirtinkMachineTemplate
name: "${CLUSTER_NAME}-cp"
kubeadmConfigSpec:
initConfiguration:
nodeRegistration:
kubeletExtraArgs:
provider-id: "virtink://{{ ds.meta_data.instance_id }}"
ignorePreflightErrors:
- SystemVerification
joinConfiguration:
nodeRegistration:
kubeletExtraArgs:
provider-id: "virtink://{{ ds.meta_data.instance_id }}"
ignorePreflightErrors:
- SystemVerification
preKubeadmCommands:
- "for image in $(find /usr/share/capch/images -name '*.tar'); do ctr -n k8s.io images import $image; done"
postKubeadmCommands:
- "rm -rf /usr/share/capch/images/*.tar"
---
apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
kind: VirtinkMachineTemplate
metadata:
name: "${CLUSTER_NAME}-cp"
spec:
template:
spec:
ipPoolRef:
apiGroup: ipam.metal3.io
kind: IPPool
name: "${VIRTINK_IP_POOL_NAME}"
virtualMachineTemplate:
metadata:
namespace: ${VIRTINK_INFRA_CLUSTER_RESOURCES_NAMESPACE:=${NAMESPACE}}
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
topologyKey: kubernetes.io/hostname
labelSelector:
matchExpressions:
- key: cluster.x-k8s.io/control-plane
operator: Exists
runPolicy: Always
readinessProbe:
httpGet:
scheme: HTTPS
port: 6443
path: /readyz
instance:
cpu:
sockets: 1
coresPerSocket: ${VIRTINK_CONTROL_PLANE_MACHINE_CPU_CORES:=2}
memory:
size: ${VIRTINK_CONTROL_PLANE_MACHINE_MEMORY_SIZE:=4Gi}
kernel:
image: "${VIRTINK_CONTROL_PLANE_MACHINE_KERNEL_IMAGE:=smartxworks/capch-kernel-5.15.12}"
cmdline: "console=ttyS0 root=/dev/vda rw"
disks:
- name: rootfs
interfaces:
- name: pod
volumes:
- name: rootfs
dataVolume:
volumeName: rootfs
networks:
- name: pod
pod: {}
volumeTemplates:
- dataVolume:
metadata:
name: rootfs
spec:
pvc:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: ${VIRTINK_CONTROL_PLANE_MACHINE_ROOTFS_SIZE:=4Gi}
source:
registry:
pullMethod: node
url: "docker://${VIRTINK_CONTROL_PLANE_MACHINE_ROOTFS_CDI_IMAGE:=smartxworks/capch-rootfs-cdi-${KUBERNETES_VERSION:=1.24.0}}"
---
apiVersion: cluster.x-k8s.io/v1beta1
kind: MachineDeployment
metadata:
name: "${CLUSTER_NAME}-md-0"
spec:
clusterName: "${CLUSTER_NAME}"
replicas: ${WORKER_MACHINE_COUNT}
selector:
matchLabels: {}
template:
spec:
clusterName: "${CLUSTER_NAME}"
version: "${KUBERNETES_VERSION:=1.24.0}"
bootstrap:
configRef:
apiVersion: bootstrap.cluster.x-k8s.io/v1beta1
kind: KubeadmConfigTemplate
name: "${CLUSTER_NAME}-md-0"
infrastructureRef:
apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
kind: VirtinkMachineTemplate
name: "${CLUSTER_NAME}-md-0"
---
apiVersion: bootstrap.cluster.x-k8s.io/v1beta1
kind: KubeadmConfigTemplate
metadata:
name: "${CLUSTER_NAME}-md-0"
spec:
template:
spec:
joinConfiguration:
nodeRegistration:
kubeletExtraArgs:
provider-id: "virtink://{{ ds.meta_data.instance_id }}"
ignorePreflightErrors:
- SystemVerification
preKubeadmCommands:
- "for image in $(find /usr/share/capch/images -name '*.tar'); do ctr -n k8s.io images import $image; done"
postKubeadmCommands:
- "rm -rf /usr/share/capch/images/*.tar"
---
apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
kind: VirtinkMachineTemplate
metadata:
name: "${CLUSTER_NAME}-md-0"
spec:
template:
spec:
ipPoolRef:
apiGroup: ipam.metal3.io
kind: IPPool
name: "${VIRTINK_IP_POOL_NAME}"
virtualMachineTemplate:
metadata:
namespace: ${VIRTINK_INFRA_CLUSTER_RESOURCES_NAMESPACE:=${NAMESPACE}}
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
topologyKey: kubernetes.io/hostname
labelSelector:
matchExpressions:
- key: cluster.x-k8s.io/deployment-name
operator: In
values:
- "${CLUSTER_NAME}-md-0"
runPolicy: Always
instance:
cpu:
sockets: 1
coresPerSocket: ${VIRTINK_WORKER_MACHINE_CPU_CORES:=2}
memory:
size: ${VIRTINK_WORKER_MACHINE_MEMORY_SIZE:=4Gi}
kernel:
image: "${VIRTINK_WORKER_MACHINE_KERNEL_IMAGE:=smartxworks/capch-kernel-5.15.12}"
cmdline: "console=ttyS0 root=/dev/vda rw"
disks:
- name: rootfs
interfaces:
- name: pod
volumes:
- name: rootfs
dataVolume:
volumeName: rootfs
networks:
- name: pod
pod: {}
volumeTemplates:
- dataVolume:
metadata:
name: rootfs
spec:
pvc:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: ${VIRTINK_WORKER_MACHINE_ROOTFS_SIZE:=4Gi}
source:
registry:
pullMethod: node
url: "docker://${VIRTINK_WORKER_MACHINE_ROOTFS_CDI_IMAGE:=smartxworks/capch-rootfs-cdi-${KUBERNETES_VERSION:=1.24.0}}"