Skip to content

Commit 62ca59d

Browse files
schildwaechterzalbiraw
authored andcommitted
fix(chart): allow to be used as optional subchart
1 parent bf532eb commit 62ca59d

3 files changed

Lines changed: 7 additions & 0 deletions

File tree

traefik/VALUES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Kubernetes: `>=1.22.0-0`
6767
| deployment.runtimeClassName | string | `""` | Set a runtimeClassName on pod |
6868
| deployment.shareProcessNamespace | bool | `false` | Use process namespace sharing |
6969
| deployment.terminationGracePeriodSeconds | int | `60` | Amount of time (in seconds) before Kubernetes will send the SIGKILL signal if Traefik does not shut down |
70+
| enabled | bool | `true` | Allow the Helm chart to be used as optional subchart. |
7071
| env | list | `[]` | Additional Environment variables to be passed to Traefik's binary |
7172
| envFrom | list | `[]` | Environment variables to be passed to Traefik's binary from configMaps or secrets |
7273
| experimental.abortOnPluginFailure | bool | `false` | Defines whether all plugins must be loaded successfully for Traefik to start |

traefik/values.schema.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,9 @@
187187
}
188188
}
189189
},
190+
"enabled": {
191+
"const": true
192+
},
190193
"env": {
191194
"type": "array"
192195
},

traefik/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1383,3 +1383,6 @@ oci_meta:
13831383
hub:
13841384
image: traefik-hub
13851385
tag: latest
1386+
1387+
# -- Allow the Helm chart to be used as optional subchart.
1388+
enabled: true # @schema type:boolean; const:true

0 commit comments

Comments
 (0)