Skip to content

Commit 32fc663

Browse files
chore(deps): update helm release podinfo to v6.9.2
1 parent cb8e032 commit 32fc663

File tree

7 files changed

+447
-28
lines changed

7 files changed

+447
-28
lines changed

docs/examples/src/charts/charts.k

Lines changed: 2 additions & 2 deletions
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.9.2"
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.9.2"
1515
schemaGenerator = "AUTO"
1616
schemaValidator = "KCL"
1717
}

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
33
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
44
"""
5+
56
import helm
67

78
schema Chart(helm.Chart):
@@ -13,12 +14,12 @@ schema Chart(helm.Chart):
1314
values : Values | any, optional
1415
chart : str, required, default is "podinfo"
1516
repoURL : str, required, default is "https://stefanprodan.github.io/podinfo"
16-
targetRevision : str, optional, default is "6.7.1"
17+
targetRevision : str, optional, default is "6.9.2"
1718
schemaValidator : "KCL" | "HELM", optional, default is "KCL"
1819
"""
1920
values?: Values | any
2021
chart: str = "podinfo"
2122
repoURL: str = "https://stefanprodan.github.io/podinfo"
22-
targetRevision?: str = "6.7.1"
23+
targetRevision?: str = "6.9.2"
2324
schemaValidator?: "KCL" | "HELM" = "KCL"
2425

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@
247247
"type": "string"
248248
},
249249
"tag": {
250-
"default": "6.7.1",
250+
"default": "6.9.2",
251251
"required": [],
252252
"title": "tag",
253253
"type": "string"
@@ -387,6 +387,13 @@
387387
"title": "podDisruptionBudget",
388388
"type": "object"
389389
},
390+
"podSecurityContext": {
391+
"additionalProperties": true,
392+
"description": "set pod security context",
393+
"required": [],
394+
"title": "podSecurityContext",
395+
"type": "object"
396+
},
390397
"probes": {
391398
"additionalProperties": true,
392399
"description": "https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",

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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
33
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
44
"""
5+
56
schema Values:
67
r"""
78
Values
@@ -38,6 +39,8 @@ schema Values:
3839
podAnnotations : ValuesPodAnnotations, optional
3940
podDisruptionBudget : ValuesPodDisruptionBudget, optional
4041
Disruption budget will be configured only when the replicaCount is greater than 1
42+
podSecurityContext : ValuesPodSecurityContext, optional
43+
set pod security context
4144
probes : ValuesProbes, optional
4245
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
4346
redis : ValuesRedis, optional
@@ -79,6 +82,7 @@ schema Values:
7982
nodeSelector?: ValuesNodeSelector
8083
podAnnotations?: ValuesPodAnnotations
8184
podDisruptionBudget?: ValuesPodDisruptionBudget
85+
podSecurityContext?: ValuesPodSecurityContext
8286
probes?: ValuesProbes
8387
redis?: ValuesRedis
8488
replicaCount?: int
@@ -211,7 +215,7 @@ schema ValuesImage:
211215
----------
212216
pullPolicy : str, optional, default is "IfNotPresent"
213217
repository : str, optional, default is "ghcr.io/stefanprodan/podinfo"
214-
tag : str, optional, default is "6.7.1"
218+
tag : str, optional, default is "6.9.2"
215219
"""
216220
[...str]: any
217221
pullPolicy?: str
@@ -319,6 +323,12 @@ schema ValuesPodDisruptionBudget:
319323
"""
320324
[...str]: any
321325

326+
schema ValuesPodSecurityContext:
327+
r"""
328+
set pod security context
329+
"""
330+
[...str]: any
331+
322332
schema ValuesProbes:
323333
r"""
324334
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
33
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
44
"""
5+
56
import helm
67

78
schema Chart(helm.Chart):
@@ -13,12 +14,12 @@ schema Chart(helm.Chart):
1314
values : Values | any, optional
1415
chart : str, required, default is "podinfo"
1516
repoURL : str, required, default is "https://stefanprodan.github.io/podinfo"
16-
targetRevision : str, optional, default is "5.2.1"
17+
targetRevision : str, optional, default is "6.9.2"
1718
schemaValidator : "KCL" | "HELM", optional, default is "KCL"
1819
"""
1920
values?: Values | any
2021
chart: str = "podinfo"
2122
repoURL: str = "https://stefanprodan.github.io/podinfo"
22-
targetRevision?: str = "5.2.1"
23+
targetRevision?: str = "6.9.2"
2324
schemaValidator?: "KCL" | "HELM" = "KCL"
2425

0 commit comments

Comments
 (0)