Skip to content

Commit

Permalink
fix(cf-common): keda scaledobject fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-klimko committed Jun 5, 2024
1 parent 0ce6492 commit bbbaeed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/cf-common/templates/keda/_scaledobject.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ spec:
maxReplicaCount: {{ .Values.keda.spec.maxReplicaCount | default 100 }}
{{- if .Values.keda.spec.fallback }}
fallback:
failureThreshold: {{- required "Values.keda.spec.fallback.failureThreshold is required!" .Values.keda.spec.fallback.failureThreshold }}
replicas: {{- required "Values.keda.spec.fallback.replicas is required!" .Values.keda.spec.fallback.replicas }}
failureThreshold: {{ required "Values.keda.spec.fallback.failureThreshold is required!" .Values.keda.spec.fallback.failureThreshold }}
replicas: {{ required "Values.keda.spec.fallback.replicas is required!" .Values.keda.spec.fallback.replicas }}
{{- end }}
{{- with .Values.keda.spec.advanced }}
advanced:
Expand Down

0 comments on commit bbbaeed

Please sign in to comment.