Skip to content

Commit 40d2c21

Browse files
TheGthrTheo GAUTHIER
authored andcommitted
helm: Expose manager verbosity parameter for all provider types
1 parent c52814e commit 40d2c21

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

hack/charts/cluster-api-operator/templates/addon.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ spec:
4545
diagnosticsAddress: {{- $addon.manager.metrics.diagnosticsAddress }}
4646
{{- end }}
4747
{{- end }}
48+
verbosity: {{ default 1 $addon.manager.verbosity }}
4849
{{- end }}
4950
{{- if $addonVersion }}
5051
version: {{ $addonVersion }}

hack/charts/cluster-api-operator/templates/bootstrap.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ spec:
5151
diagnosticsAddress: {{- $bootstrap.manager.metrics.diagnosticsAddress }}
5252
{{- end }}
5353
{{- end }}
54+
verbosity: {{ default 1 $bootstrap.manager.verbosity }}
5455
{{- end }}
5556
{{- if $bootstrapVersion }}
5657
version: {{ $bootstrapVersion }}

hack/charts/cluster-api-operator/templates/control-plane.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ spec:
5454
diagnosticsAddress: {{- $controlPlane.manager.metrics.diagnosticsAddress }}
5555
{{- end }}
5656
{{- end }}
57+
verbosity: {{ default 1 $controlPlane.manager.verbosity }}
5758
{{- end }}
5859
{{- if (default (($controlPlane).configSecret).name (($.Values).configSecret).name) }}
5960
{{- include "capi-operator.configSecret" (dict "ROOT" $ "ARGUMENT" $controlPlane) | nindent 2 }}

hack/charts/cluster-api-operator/templates/core.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ spec:
5454
diagnosticsAddress: {{- $core.manager.metrics.diagnosticsAddress }}
5555
{{- end }}
5656
{{- end }}
57+
verbosity: {{ default 1 $core.manager.verbosity }}
5758
{{- end }}
5859
{{- if (default (($core).configSecret).name (($.Values).configSecret).name) }}
5960
{{- include "capi-operator.configSecret" (dict "ROOT" $ "ARGUMENT" $core) | nindent 2 }}

hack/charts/cluster-api-operator/templates/infra.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ spec:
5454
diagnosticsAddress: {{- $infra.manager.metrics.diagnosticsAddress }}
5555
{{- end }}
5656
{{- end }}
57+
verbosity: {{ default 1 $infra.manager.verbosity }}
5758
{{- end }}
5859
{{- if and (kindIs "map" $.Values.fetchConfig) (hasKey $.Values.fetchConfig $infrastructureName) }}
5960
{{- range $key, $value := $.Values.fetchConfig }}

hack/charts/cluster-api-operator/templates/ipam.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ spec:
5454
diagnosticsAddress: {{- $ipam.manager.metrics.diagnosticsAddress }}
5555
{{- end }}
5656
{{- end }}
57+
verbosity: {{ default 1 $ipam.manager.verbosity }}
5758
{{- end }}
5859
{{- if and (kindIs "map" $.Values.fetchConfig) (hasKey $.Values.fetchConfig $ipamName) }}
5960
{{- range $key, $value := $.Values.fetchConfig }}

0 commit comments

Comments
 (0)