Skip to content

Commit

Permalink
Fixed invalid value in (.Values.webhook).highAvailability
Browse files Browse the repository at this point in the history
  • Loading branch information
mjgrzybek committed Apr 27, 2022
1 parent 7473780 commit 64ae196
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ metadata:
labels:
{{- include "dynatrace-operator.webhookLabels" . | nindent 4 }}
spec:
replicas: {{ (.Values.webhook).highAvailability | ternary 2 1 }}
replicas: {{ (default false (.Values.webhook).highAvailability) | ternary 2 1 }}
revisionHistoryLimit: 1
selector:
matchLabels:
Expand Down

0 comments on commit 64ae196

Please sign in to comment.