Skip to content

Commit

Permalink
fix: service paths may have underscores...doh!
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurice Faber committed Mar 25, 2021
1 parent db6d186 commit e9a8e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/team-ns/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"

{{- define "flatten-name" -}}
{{- $res := regexReplaceAll "[()/]{1}" . "" -}}
{{- regexReplaceAll "[|.]{1}" $res "-" | trimAll "-" -}}
{{- regexReplaceAll "[|.]{1}" $res "-" | replace "_" "" | trimAll "-" -}}
{{- end -}}

{{- define "dockercfg" -}}
Expand Down

0 comments on commit e9a8e31

Please sign in to comment.