Skip to content

Commit f6df5a6

Browse files
authored
Fix invalid kamonTags setting (#658)
* Update invoker-pod.yaml * Update invoker-pod.yaml * Update invoker-pod.yaml * Update controller-pod.yaml
1 parent 6a860c8 commit f6df5a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

helm/openwhisk/templates/controller-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ spec:
178178
- name: "METRICS_KAMON"
179179
value: "true"
180180
{{ end }}
181-
{{ if or .Values.metrics.kamonTags .Values.metrics.prometheusEnabled }}
181+
{{ if .Values.metrics.kamonTags }}
182182
- name: "METRICS_KAMON_TAGS"
183183
value: "true"
184184
{{ end }}

helm/openwhisk/templates/invoker-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ spec:
181181
- name: "METRICS_KAMON"
182182
value: "true"
183183
{{ end }}
184-
{{ if and .Values.metrics.kamonTags .Values.metrics.prometheusEnabled }}
184+
{{ if .Values.metrics.kamonTags }}
185185
- name: "METRICS_KAMON_TAGS"
186186
value: "true"
187187
{{ end }}

0 commit comments

Comments
 (0)