You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(argocd-image-updater): make metricsSecure and enableHTTP2 fully optional
These flags only apply to the new controller-runtime based `run` command
and should not be rendered unless explicitly set by the user. Default to
empty string so the flags are omitted entirely when not configured.
Signed-off-by: Ilia Lazebnik <[email protected]>
Signed-off-by: Ilia <[email protected]>
| dualStack.ipFamilies | list |`[]`| IP families that should be supported and the order in which they should be applied to ClusterIP as well. Can be IPv4 and/or IPv6. |
114
114
| dualStack.ipFamilyPolicy | string |`""`| IP family policy to configure dual-stack see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services)|
115
-
| enableHTTP2 |bool|`false`| Enable HTTP/2 for the metrics and webhook servers |
115
+
| enableHTTP2 |string|`""`| Enable HTTP/2 for the metrics and webhook servers. Upstream default is `false`. Only applies to the new `run` command (controller-runtime based). Leave empty to omit the flag entirely. @type -- bool|
116
116
| extraArgs | list |`[]`| Extra arguments for argocd-image-updater not defined in `config.argocd`. If a flag contains both key and value, they need to be split to a new entry. |
117
117
| extraEnv | list |`[]`| Extra environment variables for argocd-image-updater. |
118
118
| extraEnvFrom | list |`[]`| Extra envFrom to pass to argocd-image-updater |
@@ -144,7 +144,7 @@ The `config.registries` value can be used exactly as it looks in the documentati
| metricsSecure |bool|`true`| Serve metrics endpoint securely via HTTPS (default `true`). Set to `false`to use HTTP|
147
+
| metricsSecure |string|`""`| Serve metrics endpoint securely via HTTPS. Upstream default is `true`. Only applies to the new `run` command (controller-runtime based). Leave empty to omit the flag entirely. @type -- bool|
148
148
| nameOverride | string |`""`| Global name (argocd-image-updater.name in _helpers.tpl) override |
149
149
| namespaceOverride | string |`""`| Global namespace (argocd-image-updater.namespace in _helpers.tpl) override |
150
150
| nodeSelector | object |`{}`| Kubernetes nodeSelector settings for the deployment |
Copy file name to clipboardExpand all lines: charts/argocd-image-updater/values.yaml
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -36,11 +36,13 @@ namespaceOverride: ""
36
36
## If you want to use this, please set `.Values.rbac.enabled` true as well.
37
37
createClusterRoles: true
38
38
39
-
# -- Serve metrics endpoint securely via HTTPS (default `true`). Set to `false` to use HTTP
40
-
metricsSecure: true
39
+
# -- Serve metrics endpoint securely via HTTPS. Upstream default is `true`. Only applies to the new `run` command (controller-runtime based). Leave empty to omit the flag entirely.
40
+
# @type -- bool
41
+
metricsSecure: ""
41
42
42
-
# -- Enable HTTP/2 for the metrics and webhook servers
43
-
enableHTTP2: false
43
+
# -- Enable HTTP/2 for the metrics and webhook servers. Upstream default is `false`. Only applies to the new `run` command (controller-runtime based). Leave empty to omit the flag entirely.
44
+
# @type -- bool
45
+
enableHTTP2: ""
44
46
45
47
# -- Extra arguments for argocd-image-updater not defined in `config.argocd`.
46
48
# If a flag contains both key and value, they need to be split to a new entry.
0 commit comments