Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Avi Moondra authored and Avi Moondra committed Sep 15, 2023
1 parent 2aa778a commit cca81ed
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions charts/retool/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -132,20 +132,20 @@ Usage: (include "retool.workflows.enabled" .)
{{- if or (eq .Values.workflows.enabled true) (eq .Values.workflows.enabled false) -}}
{{- if eq .Values.workflows.enabled true -}}
{{- $output = "1" -}}
{{- else }}
{{- else -}}
{{- $output = "" -}}
{{- end -}}
{{- else if empty .Values.image.tag }}
{{- else if empty .Values.image.tag -}}
{{- $output = "" -}}
{{- else if eq .Values.image.tag "latest" }}
{{- else if eq .Values.image.tag "latest" -}}
{{- $output = "1" -}}
{{- else if semverCompare ">= 3.6.11" .Values.image.tag }}
{{- else if semverCompare ">= 3.6.11" .Values.image.tag -}}
{{- $output = "1" -}}
{{- else }}
{{- else -}}
{{- $output = "" -}}
{{- end }}
{{ $output }}
{{- end }}
{{- end -}}
{{- $output -}}
{{- end -}}

{{/*
Set Temporal frontend host
Expand Down

0 comments on commit cca81ed

Please sign in to comment.