Skip to content

Commit 146dca2

Browse files
Update Helm release podinfo to v6.8.0
1 parent 5a2f5bc commit 146dca2

File tree

7 files changed

+479
-28
lines changed

7 files changed

+479
-28
lines changed

docs/examples/src/charts/charts.k

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ charts: helm.Charts = {
44
podinfo: {
55
chart = "podinfo"
66
repoURL = "https://stefanprodan.github.io/podinfo"
7-
targetRevision = "6.7.1"
7+
targetRevision = "6.8.0"
88
schemaGenerator = "AUTO"
99
schemaValidator = "KCL"
1010
}
1111
podinfo_v5: {
1212
chart = "podinfo"
1313
repoURL = "https://stefanprodan.github.io/podinfo"
14-
targetRevision = "5.2.1"
14+
targetRevision = "6.8.0"
1515
schemaGenerator = "AUTO"
1616
schemaValidator = "KCL"
1717
}

docs/examples/src/charts/podinfo/chart.k

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ schema Chart(helm.Chart):
1414
values : Values | any, optional
1515
chart : str, required, default is "podinfo"
1616
repoURL : str, required, default is "https://stefanprodan.github.io/podinfo"
17-
targetRevision : str, optional, default is "6.7.1"
17+
targetRevision : str, optional, default is "6.8.0"
1818
schemaValidator : "KCL" | "HELM", optional, default is "KCL"
1919
"""
2020

2121
values?: Values | any
2222
chart: str = "podinfo"
2323
repoURL: str = "https://stefanprodan.github.io/podinfo"
24-
targetRevision?: str = "6.7.1"
24+
targetRevision?: str = "6.8.0"
2525
schemaValidator?: "KCL" | "HELM" = "KCL"
2626

docs/examples/src/charts/podinfo/values.schema.json

+19-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"type": "array"
5151
},
5252
"issuerRef": {
53+
"additionalProperties": true,
5354
"description": "the issuer used to issue the certificate",
5455
"properties": {
5556
"kind": {
@@ -246,7 +247,7 @@
246247
"type": "string"
247248
},
248249
"tag": {
249-
"default": "6.7.1",
250+
"default": "6.8.0",
250251
"required": [],
251252
"title": "tag",
252253
"type": "string"
@@ -260,11 +261,13 @@
260261
"additionalProperties": true,
261262
"properties": {
262263
"additionalLabels": {
264+
"additionalProperties": true,
263265
"required": [],
264266
"title": "additionalLabels",
265267
"type": "object"
266268
},
267269
"annotations": {
270+
"additionalProperties": true,
268271
"required": [],
269272
"title": "annotations",
270273
"type": "object"
@@ -339,6 +342,7 @@
339342
"additionalProperties": true,
340343
"properties": {
341344
"profile": {
345+
"additionalProperties": true,
342346
"properties": {
343347
"enabled": {
344348
"default": false,
@@ -381,11 +385,19 @@
381385
"title": "podDisruptionBudget",
382386
"type": "object"
383387
},
388+
"podSecurityContext": {
389+
"additionalProperties": true,
390+
"description": "set pod security context",
391+
"required": [],
392+
"title": "podSecurityContext",
393+
"type": "object"
394+
},
384395
"probes": {
385396
"additionalProperties": true,
386397
"description": "https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
387398
"properties": {
388399
"liveness": {
400+
"additionalProperties": true,
389401
"properties": {
390402
"failureThreshold": {
391403
"default": 3,
@@ -423,6 +435,7 @@
423435
"type": "object"
424436
},
425437
"readiness": {
438+
"additionalProperties": true,
426439
"properties": {
427440
"failureThreshold": {
428441
"default": 3,
@@ -460,6 +473,7 @@
460473
"type": "object"
461474
},
462475
"startup": {
476+
"additionalProperties": true,
463477
"properties": {
464478
"enable": {
465479
"default": false,
@@ -544,6 +558,7 @@
544558
"additionalProperties": true,
545559
"properties": {
546560
"limits": {
561+
"additionalProperties": true,
547562
"default": "",
548563
"properties": {
549564
"memory": {
@@ -557,6 +572,7 @@
557572
"type": "null"
558573
},
559574
"requests": {
575+
"additionalProperties": true,
560576
"properties": {
561577
"cpu": {
562578
"default": "1m",
@@ -592,6 +608,7 @@
592608
"description": "Kubernetes Service settings",
593609
"properties": {
594610
"annotations": {
611+
"additionalProperties": true,
595612
"required": [],
596613
"title": "annotations",
597614
"type": "object"
@@ -692,6 +709,7 @@
692709
"description": "create Prometheus Operator monitor",
693710
"properties": {
694711
"additionalLabels": {
712+
"additionalProperties": true,
695713
"required": [],
696714
"title": "additionalLabels",
697715
"type": "object"

docs/examples/src/charts/podinfo/values.schema.k

+18-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ schema Values:
3939
podAnnotations : ValuesPodAnnotations, optional
4040
podDisruptionBudget : ValuesPodDisruptionBudget, optional
4141
Disruption budget will be configured only when the replicaCount is greater than 1
42+
podSecurityContext : ValuesPodSecurityContext, optional
43+
set pod security context
4244
probes : ValuesProbes, optional
4345
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
4446
redis : ValuesRedis, optional
@@ -80,6 +82,7 @@ schema Values:
8082
nodeSelector?: ValuesNodeSelector
8183
podAnnotations?: ValuesPodAnnotations
8284
podDisruptionBudget?: ValuesPodDisruptionBudget
85+
podSecurityContext?: ValuesPodSecurityContext
8386
probes?: ValuesProbes
8487
redis?: ValuesRedis
8588
replicaCount?: int
@@ -131,6 +134,7 @@ schema ValuesCertificateIssuerRef:
131134

132135
kind?: str
133136
name?: str
137+
[...str]: any
134138

135139
schema ValuesConfig:
136140
r"""
@@ -220,7 +224,7 @@ schema ValuesImage:
220224
----------
221225
pullPolicy : str, optional, default is "IfNotPresent"
222226
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"
224228
"""
225229

226230
pullPolicy?: str
@@ -314,6 +318,7 @@ schema ValuesLinkerdProfile:
314318
"""
315319

316320
enabled?: bool
321+
[...str]: any
317322

318323
schema ValuesNodeSelector:
319324
r"""
@@ -336,6 +341,13 @@ schema ValuesPodDisruptionBudget:
336341

337342
[...str]: any
338343

344+
schema ValuesPodSecurityContext:
345+
r"""
346+
set pod security context
347+
"""
348+
349+
[...str]: any
350+
339351
schema ValuesProbes:
340352
r"""
341353
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
@@ -370,6 +382,7 @@ schema ValuesProbesLiveness:
370382
periodSeconds?: int
371383
successThreshold?: int
372384
timeoutSeconds?: int
385+
[...str]: any
373386

374387
schema ValuesProbesReadiness:
375388
r"""
@@ -389,6 +402,7 @@ schema ValuesProbesReadiness:
389402
periodSeconds?: int
390403
successThreshold?: int
391404
timeoutSeconds?: int
405+
[...str]: any
392406

393407
schema ValuesProbesStartup:
394408
r"""
@@ -410,6 +424,7 @@ schema ValuesProbesStartup:
410424
periodSeconds?: int
411425
successThreshold?: int
412426
timeoutSeconds?: int
427+
[...str]: any
413428

414429
schema ValuesRedis:
415430
r"""
@@ -451,6 +466,7 @@ schema ValuesResourcesLimits:
451466
"""
452467

453468
memory?: str
469+
[...str]: any
454470

455471
schema ValuesResourcesRequests:
456472
r"""
@@ -464,6 +480,7 @@ schema ValuesResourcesRequests:
464480

465481
cpu?: str
466482
memory?: str
483+
[...str]: any
467484

468485
schema ValuesSecurityContext:
469486
r"""

docs/examples/src/charts/podinfo_v5/chart.k

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ schema Chart(helm.Chart):
1414
values : Values | any, optional
1515
chart : str, required, default is "podinfo"
1616
repoURL : str, required, default is "https://stefanprodan.github.io/podinfo"
17-
targetRevision : str, optional, default is "5.2.1"
17+
targetRevision : str, optional, default is "6.8.0"
1818
schemaValidator : "KCL" | "HELM", optional, default is "KCL"
1919
"""
2020

2121
values?: Values | any
2222
chart: str = "podinfo"
2323
repoURL: str = "https://stefanprodan.github.io/podinfo"
24-
targetRevision?: str = "5.2.1"
24+
targetRevision?: str = "6.8.0"
2525
schemaValidator?: "KCL" | "HELM" = "KCL"
2626

0 commit comments

Comments
 (0)