-
Notifications
You must be signed in to change notification settings - Fork 8
/
part3.yaml
217 lines (207 loc) · 4.57 KB
/
part3.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
apiVersion: kops.k8s.io/v1alpha2
kind: Cluster
metadata:
creationTimestamp: null
name: part3.k8s.local
spec:
api:
loadBalancer:
type: Public
authorization:
rbac: {}
channel: stable
cloudConfig:
gceServiceAccount: default
cloudProvider: gce
configBase: gs://<your-gs-bucket>/part3.k8s.local
containerRuntime: containerd
etcdClusters:
- cpuRequest: 200m
etcdMembers:
- instanceGroup: master-europe-west3-a
name: a
memoryRequest: 100Mi
name: main
- cpuRequest: 100m
etcdMembers:
- instanceGroup: master-europe-west3-a
name: a
memoryRequest: 100Mi
name: events
iam:
allowContainerRegistry: true
legacy: false
kubelet:
anonymousAuth: false
kubernetesApiAccess:
- 0.0.0.0/0
kubernetesVersion: 1.28.6
masterPublicName: api.part3.k8s.local
networking:
kubenet: {}
nonMasqueradeCIDR: 100.64.0.0/10
project: <your-cloud-computing-architecture-gcp-project>
sshAccess:
- 0.0.0.0/0
subnets:
- name: europe-west3
region: europe-west3
type: Public
topology:
dns:
type: Public
masters: public
nodes: public
---
apiVersion: kops.k8s.io/v1alpha2
kind: InstanceGroup
metadata:
creationTimestamp: null
labels:
kops.k8s.io/cluster: part3.k8s.local
name: master-europe-west3-a
spec:
image: ubuntu-os-cloud/ubuntu-2204-jammy-v20240208
machineType: e2-standard-2
maxSize: 1
minSize: 1
nodeLabels:
cloud.google.com/metadata-proxy-ready: "true"
kops.k8s.io/instancegroup: master-europe-west3-a
role: Master
subnets:
- europe-west3
zones:
- europe-west3-a
---
apiVersion: kops.k8s.io/v1alpha2
kind: InstanceGroup
metadata:
creationTimestamp: null
labels:
kops.k8s.io/cluster: part3.k8s.local
name: client-measure
spec:
image: ubuntu-os-cloud/ubuntu-2204-jammy-v20240208
machineType: e2-standard-2
maxSize: 1
minSize: 1
nodeLabels:
cloud.google.com/metadata-proxy-ready: "true"
kops.k8s.io/instancegroup: nodes-europe-west3-a
cca-project-nodetype: "client-measure"
role: Node
subnets:
- europe-west3
zones:
- europe-west3-a
---
apiVersion: kops.k8s.io/v1alpha2
kind: InstanceGroup
metadata:
creationTimestamp: null
labels:
kops.k8s.io/cluster: part3.k8s.local
name: client-agent-a
spec:
image: ubuntu-os-cloud/ubuntu-2204-jammy-v20240208
machineType: e2-standard-2
maxSize: 1
minSize: 1
nodeLabels:
cloud.google.com/metadata-proxy-ready: "true"
kops.k8s.io/instancegroup: nodes-europe-west3-a
cca-project-nodetype: "client-agent-a"
role: Node
subnets:
- europe-west3
zones:
- europe-west3-a
---
apiVersion: kops.k8s.io/v1alpha2
kind: InstanceGroup
metadata:
creationTimestamp: null
labels:
kops.k8s.io/cluster: part3.k8s.local
name: client-agent-b
spec:
image: ubuntu-os-cloud/ubuntu-2204-jammy-v20240208
machineType: e2-standard-4
maxSize: 1
minSize: 1
nodeLabels:
cloud.google.com/metadata-proxy-ready: "true"
kops.k8s.io/instancegroup: nodes-europe-west3-a
cca-project-nodetype: "client-agent-b"
role: Node
subnets:
- europe-west3
zones:
- europe-west3-a
---
apiVersion: kops.k8s.io/v1alpha2
kind: InstanceGroup
metadata:
creationTimestamp: null
labels:
kops.k8s.io/cluster: part3.k8s.local
name: node-a-2core
spec:
image: ubuntu-os-cloud/ubuntu-2204-jammy-v20240208
machineType: n2d-highcpu-2
maxSize: 1
minSize: 1
nodeLabels:
cloud.google.com/metadata-proxy-ready: "true"
kops.k8s.io/instancegroup: nodes-europe-west3-a
cca-project-nodetype: "node-a-2core"
role: Node
subnets:
- europe-west3
zones:
- europe-west3-a
---
apiVersion: kops.k8s.io/v1alpha2
kind: InstanceGroup
metadata:
creationTimestamp: null
labels:
kops.k8s.io/cluster: part3.k8s.local
name: node-b-4core
spec:
image: ubuntu-os-cloud/ubuntu-2204-jammy-v20240208
machineType: n2d-highmem-4
maxSize: 1
minSize: 1
nodeLabels:
cloud.google.com/metadata-proxy-ready: "true"
kops.k8s.io/instancegroup: nodes-europe-west3-a
cca-project-nodetype: "node-b-4core"
role: Node
subnets:
- europe-west3
zones:
- europe-west3-a
---
apiVersion: kops.k8s.io/v1alpha2
kind: InstanceGroup
metadata:
creationTimestamp: null
labels:
kops.k8s.io/cluster: part3.k8s.local
name: node-c-8core
spec:
image: ubuntu-os-cloud/ubuntu-2204-jammy-v20240208
machineType: e2-standard-8
maxSize: 1
minSize: 1
nodeLabels:
cloud.google.com/metadata-proxy-ready: "true"
kops.k8s.io/instancegroup: nodes-europe-west3-a
cca-project-nodetype: "node-c-8core"
role: Node
subnets:
- europe-west3
zones:
- europe-west3-a