Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update helm release podinfo to v6.8.0 #86

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/examples/src/charts/charts.k
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ charts: helm.Charts = {
podinfo: {
chart = "podinfo"
repoURL = "https://stefanprodan.github.io/podinfo"
targetRevision = "6.7.1"
targetRevision = "6.8.0"
schemaGenerator = "AUTO"
schemaValidator = "KCL"
}
podinfo_v5: {
chart = "podinfo"
repoURL = "https://stefanprodan.github.io/podinfo"
targetRevision = "5.2.1"
targetRevision = "6.8.0"
schemaGenerator = "AUTO"
schemaValidator = "KCL"
}
Expand Down
4 changes: 2 additions & 2 deletions docs/examples/src/charts/podinfo/chart.k
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ schema Chart(helm.Chart):
values : Values | any, optional
chart : str, required, default is "podinfo"
repoURL : str, required, default is "https://stefanprodan.github.io/podinfo"
targetRevision : str, optional, default is "6.7.1"
targetRevision : str, optional, default is "6.8.0"
schemaValidator : "KCL" | "HELM", optional, default is "KCL"
"""

values?: Values | any
chart: str = "podinfo"
repoURL: str = "https://stefanprodan.github.io/podinfo"
targetRevision?: str = "6.7.1"
targetRevision?: str = "6.8.0"
schemaValidator?: "KCL" | "HELM" = "KCL"

20 changes: 19 additions & 1 deletion docs/examples/src/charts/podinfo/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"type": "array"
},
"issuerRef": {
"additionalProperties": true,
"description": "the issuer used to issue the certificate",
"properties": {
"kind": {
Expand Down Expand Up @@ -246,7 +247,7 @@
"type": "string"
},
"tag": {
"default": "6.7.1",
"default": "6.8.0",
"required": [],
"title": "tag",
"type": "string"
Expand All @@ -260,11 +261,13 @@
"additionalProperties": true,
"properties": {
"additionalLabels": {
"additionalProperties": true,
"required": [],
"title": "additionalLabels",
"type": "object"
},
"annotations": {
"additionalProperties": true,
"required": [],
"title": "annotations",
"type": "object"
Expand Down Expand Up @@ -339,6 +342,7 @@
"additionalProperties": true,
"properties": {
"profile": {
"additionalProperties": true,
"properties": {
"enabled": {
"default": false,
Expand Down Expand Up @@ -381,11 +385,19 @@
"title": "podDisruptionBudget",
"type": "object"
},
"podSecurityContext": {
"additionalProperties": true,
"description": "set pod security context",
"required": [],
"title": "podSecurityContext",
"type": "object"
},
"probes": {
"additionalProperties": true,
"description": "https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"properties": {
"liveness": {
"additionalProperties": true,
"properties": {
"failureThreshold": {
"default": 3,
Expand Down Expand Up @@ -423,6 +435,7 @@
"type": "object"
},
"readiness": {
"additionalProperties": true,
"properties": {
"failureThreshold": {
"default": 3,
Expand Down Expand Up @@ -460,6 +473,7 @@
"type": "object"
},
"startup": {
"additionalProperties": true,
"properties": {
"enable": {
"default": false,
Expand Down Expand Up @@ -544,6 +558,7 @@
"additionalProperties": true,
"properties": {
"limits": {
"additionalProperties": true,
"default": "",
"properties": {
"memory": {
Expand All @@ -557,6 +572,7 @@
"type": "null"
},
"requests": {
"additionalProperties": true,
"properties": {
"cpu": {
"default": "1m",
Expand Down Expand Up @@ -592,6 +608,7 @@
"description": "Kubernetes Service settings",
"properties": {
"annotations": {
"additionalProperties": true,
"required": [],
"title": "annotations",
"type": "object"
Expand Down Expand Up @@ -692,6 +709,7 @@
"description": "create Prometheus Operator monitor",
"properties": {
"additionalLabels": {
"additionalProperties": true,
"required": [],
"title": "additionalLabels",
"type": "object"
Expand Down
19 changes: 18 additions & 1 deletion docs/examples/src/charts/podinfo/values.schema.k
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ schema Values:
podAnnotations : ValuesPodAnnotations, optional
podDisruptionBudget : ValuesPodDisruptionBudget, optional
Disruption budget will be configured only when the replicaCount is greater than 1
podSecurityContext : ValuesPodSecurityContext, optional
set pod security context
probes : ValuesProbes, optional
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
redis : ValuesRedis, optional
Expand Down Expand Up @@ -80,6 +82,7 @@ schema Values:
nodeSelector?: ValuesNodeSelector
podAnnotations?: ValuesPodAnnotations
podDisruptionBudget?: ValuesPodDisruptionBudget
podSecurityContext?: ValuesPodSecurityContext
probes?: ValuesProbes
redis?: ValuesRedis
replicaCount?: int
Expand Down Expand Up @@ -131,6 +134,7 @@ schema ValuesCertificateIssuerRef:

kind?: str
name?: str
[...str]: any

schema ValuesConfig:
r"""
Expand Down Expand Up @@ -220,7 +224,7 @@ schema ValuesImage:
----------
pullPolicy : str, optional, default is "IfNotPresent"
repository : str, optional, default is "ghcr.io/stefanprodan/podinfo"
tag : str, optional, default is "6.7.1"
tag : str, optional, default is "6.8.0"
"""

pullPolicy?: str
Expand Down Expand Up @@ -314,6 +318,7 @@ schema ValuesLinkerdProfile:
"""

enabled?: bool
[...str]: any

schema ValuesNodeSelector:
r"""
Expand All @@ -336,6 +341,13 @@ schema ValuesPodDisruptionBudget:

[...str]: any

schema ValuesPodSecurityContext:
r"""
set pod security context
"""

[...str]: any

schema ValuesProbes:
r"""
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
Expand Down Expand Up @@ -370,6 +382,7 @@ schema ValuesProbesLiveness:
periodSeconds?: int
successThreshold?: int
timeoutSeconds?: int
[...str]: any

schema ValuesProbesReadiness:
r"""
Expand All @@ -389,6 +402,7 @@ schema ValuesProbesReadiness:
periodSeconds?: int
successThreshold?: int
timeoutSeconds?: int
[...str]: any

schema ValuesProbesStartup:
r"""
Expand All @@ -410,6 +424,7 @@ schema ValuesProbesStartup:
periodSeconds?: int
successThreshold?: int
timeoutSeconds?: int
[...str]: any

schema ValuesRedis:
r"""
Expand Down Expand Up @@ -451,6 +466,7 @@ schema ValuesResourcesLimits:
"""

memory?: str
[...str]: any

schema ValuesResourcesRequests:
r"""
Expand All @@ -464,6 +480,7 @@ schema ValuesResourcesRequests:

cpu?: str
memory?: str
[...str]: any

schema ValuesSecurityContext:
r"""
Expand Down
4 changes: 2 additions & 2 deletions docs/examples/src/charts/podinfo_v5/chart.k
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ schema Chart(helm.Chart):
values : Values | any, optional
chart : str, required, default is "podinfo"
repoURL : str, required, default is "https://stefanprodan.github.io/podinfo"
targetRevision : str, optional, default is "5.2.1"
targetRevision : str, optional, default is "6.8.0"
schemaValidator : "KCL" | "HELM", optional, default is "KCL"
"""

values?: Values | any
chart: str = "podinfo"
repoURL: str = "https://stefanprodan.github.io/podinfo"
targetRevision?: str = "5.2.1"
targetRevision?: str = "6.8.0"
schemaValidator?: "KCL" | "HELM" = "KCL"

Loading