Skip to content

Commit

Permalink
fix enalbed defaulting
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Jul 13, 2024
1 parent 26cf91c commit fded059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Charts/ioc-instance/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ to a minimum
{{- $autosaveClaim := default (print $ioc_group "-autosave-claim") .Values.autosaveClaim -}}
{{- $image := .Values.image | required "ERROR - You must supply image." -}}

{{- $enabled := ternary (eq .Values.global.enabled false) false true -}}
{{- $enabled := eq .Values.global.enabled false | ternary false true -}}

apiVersion: apps/v1
kind: StatefulSet
Expand Down

0 comments on commit fded059

Please sign in to comment.