X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=ric-platform%2F50-RIC-Platform%2Fhelm%2Fcommon%2Ftemplates%2F_name.tpl;h=f9a553e0bc8b494cd2c32a44e0b2fe9453309412;hb=b98e18905302fc97cd0ec46c8cc10b1844f08e4e;hp=200e9c31c0053eeda3250b7dc5d7767ef3428527;hpb=033ab424056c2de6bdbc22479e961aeebbaddd37;p=it%2Fdep.git diff --git a/ric-platform/50-RIC-Platform/helm/common/templates/_name.tpl b/ric-platform/50-RIC-Platform/helm/common/templates/_name.tpl index 200e9c31..f9a553e0 100644 --- a/ric-platform/50-RIC-Platform/helm/common/templates/_name.tpl +++ b/ric-platform/50-RIC-Platform/helm/common/templates/_name.tpl @@ -16,8 +16,148 @@ ################################################################################ {{/* - Expand the name of a chart. + This is the root file that define the name of each component. Value here will be used to define other K8S resource name. */}} + + + +{{- define "common.name.appmgr" -}} + {{- if .Values.appmgr -}} + {{- if .Values.appmgr.nameOverride -}} + {{- printf "%s" .Values.appmgr.nameOverride -}} + {{- else -}} + {{- printf "appmgr" -}} + {{- end -}} + {{- else -}} + {{- printf "appmgr" -}} + {{- end -}} +{{- end -}} + +{{- define "common.fullname.appmgr" -}} + {{- $name := ( include "common.name.appmgr" . ) -}} + {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + +{{- define "common.name.dbaas" -}} + {{- if .Values.dbaas -}} + {{- if .Values.dbaas.nameOverride -}} + {{- printf "%s" .Values.dbaas.nameOverride -}} + {{- else -}} + {{- printf "dbaas" -}} + {{- end -}} + {{- else -}} + {{- printf "dbaas" -}} + {{- end -}} +{{- end -}} + +{{- define "common.fullname.dbaas" -}} + {{- $name := ( include "common.name.dbaas" . ) -}} + {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + + + + + + + + + + +{{- define "common.name.e2mgr" -}} + {{- if .Values.e2mgr -}} + {{- if .Values.e2mgr.nameOverride -}} + {{- printf "%s" .Values.e2mgr.nameOverride -}} + {{- else -}} + {{- printf "e2mgr" -}} + {{- end -}} + {{- else -}} + {{- printf "e2mgr" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.e2mgr" -}} + {{- $name := ( include "common.name.e2mgr" . ) -}} + {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{- define "common.name.e2term" -}} + {{- if .Values.e2term -}} + {{- if .Values.e2term.nameOverride -}} + {{- printf "%s" .Values.e2term.nameOverride -}} + {{- else -}} + {{- printf "e2term" -}} + {{- end -}} + {{- else -}} + {{- printf "e2term" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.e2term" -}} + {{- $name := ( include "common.name.e2term" . ) -}} + {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + + + + + + + + +{{- define "common.name.rtmgr" -}} + {{- if .Values.rtmgr -}} + {{- if .Values.rtmgr.nameOverride -}} + {{- printf "%s" .Values.rtmgr.nameOverride -}} + {{- else -}} + {{- printf "rtmgr" -}} + {{- end -}} + {{- else -}} + {{- printf "rtmgr" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.rtmgr" -}} + {{- $name := ( include "common.name.rtmgr" . ) -}} + {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + + + + + +{{- define "common.name.a1mediator" -}} + {{- if .Values.a1mediator -}} + {{- if .Values.a1mediator.nameOverride -}} + {{- printf "%s" .Values.a1mediator.nameOverride -}} + {{- else -}} + {{- printf "a1mediator" -}} + {{- end -}} + {{- else -}} + {{- printf "a1mediator" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.a1mediator" -}} + {{- $name := ( include "common.name.a1mediator" . ) -}} + {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + + + + + + + {{- define "common.name" -}} {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} {{- end -}}