Skip to content

Commit 4af659e

Browse files
chore(deps): update helm release podinfo to v6.9.3
1 parent b73cd34 commit 4af659e

File tree

7 files changed

+915
-36
lines changed

7 files changed

+915
-36
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.3"
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.3"
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.3"
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.3"
2324
schemaValidator?: "KCL" | "HELM" = "KCL"
2425

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

Lines changed: 137 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,116 @@
231231
"title": "hpa",
232232
"type": "object"
233233
},
234+
"httpRoute": {
235+
"additionalProperties": true,
236+
"description": "Expose the service via Gateway HTTPRoute\nRequires a Gateway controller\nDocs https://gateway-api.sigs.k8s.io/guides/",
237+
"properties": {
238+
"additionalLabels": {
239+
"additionalProperties": true,
240+
"description": "Add additional labels to the HTTPRoute.",
241+
"required": [],
242+
"title": "additionalLabels",
243+
"type": "object"
244+
},
245+
"annotations": {
246+
"additionalProperties": true,
247+
"description": "HTTPRoute annotations.",
248+
"required": [],
249+
"title": "annotations",
250+
"type": "object"
251+
},
252+
"enabled": {
253+
"default": false,
254+
"description": "HTTPRoute enabled.",
255+
"required": [],
256+
"title": "enabled",
257+
"type": "boolean"
258+
},
259+
"hostnames": {
260+
"description": "Hostnames matching HTTP header.",
261+
"items": {
262+
"required": [],
263+
"type": "string"
264+
},
265+
"required": [],
266+
"title": "hostnames",
267+
"type": "array"
268+
},
269+
"parentRefs": {
270+
"description": "Which Gateways this Route is attached to.",
271+
"items": {
272+
"additionalProperties": true,
273+
"properties": {
274+
"name": {
275+
"default": "gateway",
276+
"required": [],
277+
"title": "name",
278+
"type": "string"
279+
},
280+
"sectionName": {
281+
"default": "http",
282+
"required": [],
283+
"title": "sectionName",
284+
"type": "string"
285+
}
286+
},
287+
"required": [],
288+
"type": "object"
289+
},
290+
"required": [],
291+
"title": "parentRefs",
292+
"type": "array"
293+
},
294+
"rules": {
295+
"description": "List of rules and filters applied.",
296+
"items": {
297+
"additionalProperties": true,
298+
"properties": {
299+
"matches": {
300+
"items": {
301+
"additionalProperties": true,
302+
"properties": {
303+
"path": {
304+
"additionalProperties": true,
305+
"properties": {
306+
"type": {
307+
"default": "PathPrefix",
308+
"required": [],
309+
"title": "type",
310+
"type": "string"
311+
},
312+
"value": {
313+
"default": "/",
314+
"required": [],
315+
"title": "value",
316+
"type": "string"
317+
}
318+
},
319+
"required": [],
320+
"title": "path",
321+
"type": "object"
322+
}
323+
},
324+
"required": [],
325+
"type": "object"
326+
},
327+
"required": [],
328+
"title": "matches",
329+
"type": "array"
330+
}
331+
},
332+
"required": [],
333+
"type": "object"
334+
},
335+
"required": [],
336+
"title": "rules",
337+
"type": "array"
338+
}
339+
},
340+
"required": [],
341+
"title": "httpRoute",
342+
"type": "object"
343+
},
234344
"image": {
235345
"additionalProperties": true,
236346
"properties": {
@@ -240,14 +350,22 @@
240350
"title": "pullPolicy",
241351
"type": "string"
242352
},
353+
"pullSecrets": {
354+
"items": {
355+
"required": []
356+
},
357+
"required": [],
358+
"title": "pullSecrets",
359+
"type": "array"
360+
},
243361
"repository": {
244362
"default": "ghcr.io/stefanprodan/podinfo",
245363
"required": [],
246364
"title": "repository",
247365
"type": "string"
248366
},
249367
"tag": {
250-
"default": "6.7.1",
368+
"default": "6.9.3",
251369
"required": [],
252370
"title": "tag",
253371
"type": "string"
@@ -259,6 +377,7 @@
259377
},
260378
"ingress": {
261379
"additionalProperties": true,
380+
"description": "Expose the service via Kubernetes Ingress\nRequires an Ingress controller\nDocs https://kubernetes.io/docs/concepts/services-networking/ingress/",
262381
"properties": {
263382
"additionalLabels": {
264383
"additionalProperties": true,
@@ -387,6 +506,13 @@
387506
"title": "podDisruptionBudget",
388507
"type": "object"
389508
},
509+
"podSecurityContext": {
510+
"additionalProperties": true,
511+
"description": "set pod security context",
512+
"required": [],
513+
"title": "podSecurityContext",
514+
"type": "object"
515+
},
390516
"probes": {
391517
"additionalProperties": true,
392518
"description": "https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
@@ -526,14 +652,22 @@
526652
"title": "enabled",
527653
"type": "boolean"
528654
},
655+
"imagePullSecrets": {
656+
"items": {
657+
"required": []
658+
},
659+
"required": [],
660+
"title": "imagePullSecrets",
661+
"type": "array"
662+
},
529663
"repository": {
530-
"default": "redis",
664+
"default": "docker.io/redis",
531665
"required": [],
532666
"title": "repository",
533667
"type": "string"
534668
},
535669
"tag": {
536-
"default": "7.0.7",
670+
"default": "8.4.0",
537671
"required": [],
538672
"title": "tag",
539673
"type": "string"

0 commit comments

Comments
 (0)