_isStopped.tpl 259 B

123456789101112
  1. {{- define "ix.v1.common.helper.isStopped" -}}
  2. {{- $rootCtx := . -}}
  3. {{- $stop := "" -}}
  4. {{- with $rootCtx.Values.global.ixChartContext -}}
  5. {{- if .isStopped -}}
  6. {{- $stop = true -}}
  7. {{- end -}}
  8. {{- end -}}
  9. {{- $stop -}}
  10. {{- end -}}