Commit c3255243 authored by Waqar Ahmed's avatar Waqar Ahmed

Allow overriding service name

parent e88f516f
...@@ -5,6 +5,9 @@ within the common library. ...@@ -5,6 +5,9 @@ within the common library.
{{- define "common.classes.service" -}} {{- define "common.classes.service" -}}
{{- $values := .commonService -}} {{- $values := .commonService -}}
{{- $serviceName := include "common.names.fullname" . -}} {{- $serviceName := include "common.names.fullname" . -}}
{{- if hasKey $values "nameSuffix" -}}
{{- $serviceName = (printf "%v-%v" $serviceName $values.nameSuffix) -}}
{{ end -}}
{{- $svcType := $values.type | default "" -}} {{- $svcType := $values.type | default "" -}}
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment