feat(helm): custom arguments
This commit is contained in:
parent
ce01f0210f
commit
47fad26c3e
|
|
@ -427,6 +427,7 @@ vpa:
|
|||
| envFromSecret | string | `""` | Secret name to use as envFrom. |
|
||||
| expanderPriorities | object | `{}` | The expanderPriorities is used if `extraArgs.expander` contains `priority` and expanderPriorities is also set with the priorities. If `extraArgs.expander` contains `priority`, then expanderPriorities is used to define cluster-autoscaler-priority-expander priorities. See: https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/expander/priority/readme.md |
|
||||
| extraArgs | object | `{"logtostderr":true,"stderrthreshold":"info","v":4}` | Additional container arguments. Refer to https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-the-parameters-to-ca for the full list of cluster autoscaler parameters and their default values. Everything after the first _ will be ignored allowing the use of multi-string arguments. |
|
||||
| customArgs | list | `[]` | Additional container arguments. Refer to https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-the-parameters-to-ca for the full list of cluster autoscaler parameters and their default values. List of arguments as strings. |
|
||||
| extraEnv | object | `{}` | Additional container environment variables. |
|
||||
| extraEnvConfigMaps | object | `{}` | Additional container environment variables from ConfigMaps. |
|
||||
| extraEnvSecrets | object | `{}` | Additional container environment variables from Secrets. |
|
||||
|
|
|
|||
|
|
@ -132,6 +132,9 @@ spec:
|
|||
- --{{ $key | mustRegexFind "^[^_]+" }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- range .Values.customArgs }}
|
||||
- {{ . }}
|
||||
{{- end }}
|
||||
env:
|
||||
- name: POD_NAMESPACE
|
||||
valueFrom:
|
||||
|
|
|
|||
|
|
@ -196,6 +196,12 @@ extraArgs:
|
|||
# balancing-ignore-label_1: first-label-to-ignore
|
||||
# balancing-ignore-label_2: second-label-to-ignore
|
||||
|
||||
# customArgs -- Additional custom container arguments.
|
||||
# Refer to https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-the-parameters-to-ca for the full list of cluster autoscaler
|
||||
# parameters and their default values.
|
||||
# List of arguments as strings.
|
||||
customArgs: []
|
||||
|
||||
# extraEnv -- Additional container environment variables.
|
||||
extraEnv: {}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue