@@ -39,6 +39,8 @@ schema Values:
39
39
podAnnotations : ValuesPodAnnotations, optional
40
40
podDisruptionBudget : ValuesPodDisruptionBudget, optional
41
41
Disruption budget will be configured only when the replicaCount is greater than 1
42
+ podSecurityContext : ValuesPodSecurityContext, optional
43
+ set pod security context
42
44
probes : ValuesProbes, optional
43
45
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
44
46
redis : ValuesRedis, optional
@@ -80,6 +82,7 @@ schema Values:
80
82
nodeSelector?: ValuesNodeSelector
81
83
podAnnotations?: ValuesPodAnnotations
82
84
podDisruptionBudget?: ValuesPodDisruptionBudget
85
+ podSecurityContext?: ValuesPodSecurityContext
83
86
probes?: ValuesProbes
84
87
redis?: ValuesRedis
85
88
replicaCount?: int
@@ -131,6 +134,7 @@ schema ValuesCertificateIssuerRef:
131
134
132
135
kind?: str
133
136
name?: str
137
+ [...str]: any
134
138
135
139
schema ValuesConfig:
136
140
r"""
@@ -220,7 +224,7 @@ schema ValuesImage:
220
224
----------
221
225
pullPolicy : str, optional, default is "IfNotPresent"
222
226
repository : str, optional, default is "ghcr.io/stefanprodan/podinfo"
223
- tag : str, optional, default is "6.7.1 "
227
+ tag : str, optional, default is "6.8.0 "
224
228
"""
225
229
226
230
pullPolicy?: str
@@ -314,6 +318,7 @@ schema ValuesLinkerdProfile:
314
318
"""
315
319
316
320
enabled?: bool
321
+ [...str]: any
317
322
318
323
schema ValuesNodeSelector:
319
324
r"""
@@ -336,6 +341,13 @@ schema ValuesPodDisruptionBudget:
336
341
337
342
[...str]: any
338
343
344
+ schema ValuesPodSecurityContext:
345
+ r"""
346
+ set pod security context
347
+ """
348
+
349
+ [...str]: any
350
+
339
351
schema ValuesProbes:
340
352
r"""
341
353
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
@@ -370,6 +382,7 @@ schema ValuesProbesLiveness:
370
382
periodSeconds?: int
371
383
successThreshold?: int
372
384
timeoutSeconds?: int
385
+ [...str]: any
373
386
374
387
schema ValuesProbesReadiness:
375
388
r"""
@@ -389,6 +402,7 @@ schema ValuesProbesReadiness:
389
402
periodSeconds?: int
390
403
successThreshold?: int
391
404
timeoutSeconds?: int
405
+ [...str]: any
392
406
393
407
schema ValuesProbesStartup:
394
408
r"""
@@ -410,6 +424,7 @@ schema ValuesProbesStartup:
410
424
periodSeconds?: int
411
425
successThreshold?: int
412
426
timeoutSeconds?: int
427
+ [...str]: any
413
428
414
429
schema ValuesRedis:
415
430
r"""
@@ -451,6 +466,7 @@ schema ValuesResourcesLimits:
451
466
"""
452
467
453
468
memory?: str
469
+ [...str]: any
454
470
455
471
schema ValuesResourcesRequests:
456
472
r"""
@@ -464,6 +480,7 @@ schema ValuesResourcesRequests:
464
480
465
481
cpu?: str
466
482
memory?: str
483
+ [...str]: any
467
484
468
485
schema ValuesSecurityContext:
469
486
r"""
0 commit comments