Skip to content

Commit

Permalink
HPCC-30698 Fix getPlanePrefix quoting
Browse files Browse the repository at this point in the history
Signed-off-by: Jake Smith <[email protected]>
  • Loading branch information
jakesmith committed Oct 27, 2023
1 parent 4c39442 commit eb17666
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helm/hpcc/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -504,9 +504,9 @@ Pass in dict with root, planeName
{{- range $plane := $planes -}}
{{- if (eq $plane.name $name) -}}
{{- if $plane.subPath -}}
{{- printf "%s/%s" $plane.prefix $plane.subPath | quote -}}
{{- printf "%s/%s" $plane.prefix $plane.subPath -}}
{{- else -}}
{{- $plane.prefix | quote -}}
{{- $plane.prefix -}}
{{- end -}}
{{- end -}}
{{- end -}}
Expand Down Expand Up @@ -2188,7 +2188,7 @@ global.noResourceValidation flag. This behavior can be overridden by the caller
A template to output a merged environment. Pass in a list with global then local environments. Only the last specified value for each named environment variable will be output
*/}}
{{- define "hpcc.mergeEnvironments" -}}
{{- $result := dict "MALLOC_ARENA_MAX" "8" -}}{{- /* HPCC arena default, can be overriden by component config */ -}}
{{- $result := dict "MALLOC_ARENA_MAX" 8 -}}{{- /* HPCC arena default, can be overriden by component config */ -}}
{{- range . -}}
{{- $_ := set $result .name .value -}}
{{- end -}}
Expand Down

0 comments on commit eb17666

Please sign in to comment.