-
Notifications
You must be signed in to change notification settings - Fork 2
/
values.yaml
456 lines (379 loc) · 12.5 KB
/
values.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
clusterName: # Defaults to the release name, without the kink- prefix
# All pods will use the same image
image:
repository: ghcr.io/meln5674/kink
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
# By default, the kubelet data is stored on an emptyDir volume for performance.
# It is not recommended to use networked storage, but if you have a storage class
# that maps to direct disk access, you can set that here
kubelet:
persistence:
enabled: false
size: 8Gi
accessModes:
- ReadWriteOnce
storageClassName:
extraLabels: {}
extraEnv: []
extraArgs: []
extraVolumes: []
extraVolumeMounts: []
# Configuration for the control plane ("servers")
controlplane:
replicaCount: 1
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
extraLabels: {}
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
type: ClusterIP
api:
port: 6443
kubelet-metrics:
port: 10250
etcd-client:
port: 2379
etcd-peer:
port: 2380
rke2-discover:
port: 9345
# If this is set, this will be used along with the nodeport to build the apiserver url when exporting your kubeconfig
nodeportHost: ''
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
nodeSelector: {}
tolerations: []
affinity: {}
# Persistence for etcd
persistence:
enabled: false
size: 8Gi
accessModes:
- ReadWriteOnce
storageClassName:
# Additional places to mount the shared /etc/rancher and /var/lib/rancher volume to
# Uses the same directory for both mountPath and subPath
extraMounts: []
# If enabled, the first host listed will be used to build the kubeconfig apiserver url
# This requires SSL passthrough, TLS termination/re-encryption will NOT work
ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts: []
# - host: chart-example.local
tls: []
# If true, will taint controlplane nodes with node-role.kubernetes.io/control-plane=true:NoSchedule
defaultTaint: true
extraTaints: [] # { key: "", value: "", effect: "" }
extraEnv: []
extraArgs: []
extraVolumes: []
extraVolumeMounts: []
extraControllerSpec: {}
extraPodSpec: {}
# Configuration for worker nodes ("agents")
worker:
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
extraLabels: {}
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
type: ClusterIP
kubelet-metrics:
port: 10250
extraPorts: []
# - name: http
# port: 80
# protocol: TCP
# - name: https
# port: 443
# protoco: TCP
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# TODO
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
nodeSelector: {}
tolerations: []
affinity: {}
# Arbitrary persistence for worker nodes
# Each worker gets its own volume
persistence:
enabled: false
size: 8Gi
accessModes:
- ReadWriteOnce
storageClassName:
# Locations to mount the volume
# Each mount will use a matching sub-path, so all mounts will be a unique directory in the volume
extraMounts:
- /opt/local-path-provisioner
extraEnv: []
extraArgs: []
extraVolumes: []
extraVolumeMounts: []
extraControllerSpec: {}
extraPodSpec: {}
# If enabled, an additional deployment will be created which watches the guest cluster
# for NodePort and LoadBalancer type services, and dynamically manages a service on
# the host cluster named {{ fullname }}-lb with the same ports
loadBalancer:
enabled: false
labels: []
service:
type: ClusterIP
annotations: {}
# Configuration for the manager deployment
manager:
replicaCount: 1
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
rbac:
# If true, create a role and rolebinding to provide access to the dynamic service
create: true
extraLabels: {}
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
extraEnv: []
extraArgs: []
extraVolumes: []
extraVolumeMounts: []
# If enabled, the load balancer manager will search for guest ingresses and make them accessible from the host ingress
ingress:
enabled: false
# Each mapping defines a different ingress resource to be managed dynamically
classMappings: []
# - guestClassName: # The ingressClassName on the guest ingress resources to watch for. Must be unique
# className: # The ingressClassName on the host ingress resource to create. May be repeated.
# annotations: {}
# # If the ingress controller is implemented as a NodePort/LoadBalancer
# nodePort:
# namespace: # Namespace of the service
# name: # Name of the service
# # Can only specify one, https requires SSL passthrough
# httpPort: # Name or port number of the http port
# httpsPort: # Name or port number of the https port
# # If the ingress controller is implemented as a DaemonSet with a host port
# hostPort:
# # Can only specify one, https requires SSL passthrough
# httpPort: # The http host port
# httpsPort: # The https host port
# Each entry generates a separate, static ingress
static: []
# - className: # The ingressClassName on the host ingress resource to create. May be repeated.
# annotations: {} # The ingressClassName on the host ingress resource to create. May be repeated.
# hosts:
# - host: # Hostname of the ingress rule
# # Path info for ingress rule
# paths:
# - path: /
# pathType: Prefix
# # To target a host port
# hostPort: # Port number
# # To target a guest NodePort or LoadBalancer service
# nodePort:
# namespace: # Namespace of the guest service
# name: # Name of the guest service
# port: # Name or port number in the guest service. NOTE: If the port has a name, you MUST use the name, not the number.
# # If true, add a secret-less TLS entry for each host
# tls: false
# If enabled, run a hook job to create a secret containing a kubeconfig usable by mounting within another pod
kubeconfig:
enabled: false
labels: []
job:
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
rbac:
# If true, create a role and rolebinding to provide access to the dynamic service
create: true
extraLabels: {}
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
extraEnv: []
extraArgs: []
extraVolumes: []
extraVolumeMounts: []
sharedPersistence:
enabled: false
size: 8Gi
accessModes:
- ReadWriteOnce
storageClassName:
mounts:
- /opt/shared-local-path-provisioner
# If this is set, no PVC will be created on the host, but a RWX StorageClass will still be created on the guest cluster.
# This is only intended to support the use case of a single node with no persistence storage, using emptyDir's for all data
enabledWithoutStorage: false
# The file gateway is intended to provide an efficient way to transfer files into the cluster.
# Unlike a KinD cluster, there is no reasonable way to mount the current directory into the cluster.
# Relying on kubectl cp relies on the control plane, which may be significantly bandwidth limited
# compared to worker nodes.
# The file gateway allows transmitting a tarball directly via a NodePort to pod that mounts the volume
# described in the sharedPersistence section.
fileGateway:
enabled: false
service:
type: ClusterIP
port: 8443
ingress:
# enabled: set by controlplane.ingress.enabled
hosts: []
# - host: chart-example.local
tls: []
token:
value: my-secret-token
existingSecret:
name:
tokenKey: token
clusterDomain: cluster.local
rke2:
enabled: false
iptables:
useLegacy: false
# This object will be used to create a registries.yaml file as described in
# https://docs.k3s.io/installation/private-registry
# and
# https://docs.rke2.io/install/containerd_registry_configuration
# The schema is identical, with the addition of the "volume" field for auth and tls.
# If this field is present, it must be a valid pod spec volume, and the subfields are
# instead treated as the names of subPath's within that volume
# e.g.
# configs:
# my-registry:5000
# auth:
# volume:
# secret:
# secretName: my-registry-config
# username: username
# password: password
# tls:
# volume:
# configMap:
# name: my-registry-ca
# ca_file: ca.pem
registries:
mirrors: {}
configs: {}