-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcluster.yaml
47 lines (47 loc) · 1.37 KB
/
cluster.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
apiVersion: kind.x-k8s.io/v1alpha4
kind: Cluster
nodes:
- role: control-plane
image: kindest/node:v1.30.6@sha256:b6d08db72079ba5ae1f4a88a09025c0a904af3b52387643c285442afb05ab994
kubeadmConfigPatches:
- |
kind: InitConfiguration
nodeRegistration:
kubeletExtraArgs:
node-labels: "ingress-ready=true"
extraPortMappings:
- containerPort: 80
hostPort: 80
protocol: TCP
- containerPort: 443
hostPort: 443
protocol: TCP
# labels:
# role: control-plane
# - role: worker
# image: kindest/node:v1.30.6@sha256:b6d08db72079ba5ae1f4a88a09025c0a904af3b52387643c285442afb05ab994
# labels:
# role: data-plane
# zone: az-a
# tier: standard # standard/premium
# nodetype: generic # generic/gpu
# disktype: ssd # hdd/ssd
# - role: worker
# image: kindest/node:v1.30.6@sha256:b6d08db72079ba5ae1f4a88a09025c0a904af3b52387643c285442afb05ab994
# labels:
# role: data-plane
# zone: az-b
# tier: standard # standard/premium
# nodetype: generic # generic/gpu
# disktype: ssd # hdd/ssd
# - role: worker
# image: kindest/node:v1.30.6@sha256:b6d08db72079ba5ae1f4a88a09025c0a904af3b52387643c285442afb05ab994
# labels:
# role: data-plane
# zone: az-c
# tier: standard # standard/premium
# nodetype: generic # generic/gpu
# disktype: ssd # hdd/ssd
networking:
disableDefaultCNI: true
kubeProxyMode: none