X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ric-common%2FCommon-Template%2Fhelm%2Fric-common%2Ftemplates%2F_name.tpl;h=6402565e99c44a1823c5cdbc67df9f17011b2353;hb=01adf4c86818ed16f46d8c0f9e9c691792bb233a;hp=f712184490d67cd478c3bf01f9272d366f30b126;hpb=cca6ad5be1ba8679874c24a5b1c628055cd1eac8;p=it%2Fdep.git diff --git a/ric-common/Common-Template/helm/ric-common/templates/_name.tpl b/ric-common/Common-Template/helm/ric-common/templates/_name.tpl index f7121844..6402565e 100644 --- a/ric-common/Common-Template/helm/ric-common/templates/_name.tpl +++ b/ric-common/Common-Template/helm/ric-common/templates/_name.tpl @@ -35,7 +35,8 @@ {{- define "common.fullname.appmgr" -}} {{- $name := ( include "common.name.appmgr" . ) -}} - {{- printf "%s-%s" .Release.Namespace $name | trunc 63 | trimSuffix "-" -}} + {{- $namespace := ( include "common.namespace.platform" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} {{- end -}} @@ -53,7 +54,8 @@ {{- define "common.fullname.dbaas" -}} {{- $name := ( include "common.name.dbaas" . ) -}} - {{- printf "%s-%s" .Release.Namespace $name | trunc 63 | trimSuffix "-" -}} + {{- $namespace := ( include "common.namespace.platform" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} {{- end -}} @@ -81,7 +83,8 @@ {{- define "common.fullname.e2mgr" -}} {{- $name := ( include "common.name.e2mgr" . ) -}} - {{- printf "%s-%s" .Release.Namespace $name | trunc 63 | trimSuffix "-" -}} + {{- $namespace := ( include "common.namespace.platform" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} {{- end -}} {{- define "common.name.e2term" -}} @@ -99,7 +102,8 @@ {{- define "common.fullname.e2term" -}} {{- $name := ( include "common.name.e2term" . ) -}} - {{- printf "%s-%s" .Release.Namespace $name | trunc 63 | trimSuffix "-" -}} + {{- $namespace := ( include "common.namespace.platform" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} {{- end -}} @@ -125,7 +129,32 @@ {{- define "common.fullname.rtmgr" -}} {{- $name := ( include "common.name.rtmgr" . ) -}} - {{- printf "%s-%s" .Release.Namespace $name | trunc 63 | trimSuffix "-" -}} + {{- $namespace := ( include "common.namespace.platform" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + + + + + +{{- define "common.name.submgr" -}} + {{- if .Values.submgr -}} + {{- if .Values.submgr.nameOverride -}} + {{- printf "%s" .Values.submgr.nameOverride -}} + {{- else -}} + {{- printf "submgr" -}} + {{- end -}} + {{- else -}} + {{- printf "submgr" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.submgr" -}} + {{- $name := ( include "common.name.submgr" . ) -}} + {{- $namespace := ( include "common.namespace.platform" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} {{- end -}} @@ -148,11 +177,33 @@ {{- define "common.fullname.a1mediator" -}} {{- $name := ( include "common.name.a1mediator" . ) -}} - {{- printf "%s-%s" .Release.Namespace $name | trunc 63 | trimSuffix "-" -}} + {{- $namespace := ( include "common.namespace.platform" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + + +{{- define "common.name.vespamgr" -}} + {{- if .Values.vespamgr -}} + {{- if .Values.vespamgr.nameOverride -}} + {{- printf "%s" .Values.vespamgr.nameOverride -}} + {{- else -}} + {{- printf "vespamgr" -}} + {{- end -}} + {{- else -}} + {{- printf "vespamgr" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.vespamgr" -}} + {{- $name := ( include "common.name.vespamgr" . ) -}} + {{- $namespace := ( include "common.namespace.platform" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} {{- end -}} + {{- define "common.name.nexus" -}} {{- if .Values.nexus -}} {{- if .Values.nexus.nameOverride -}} @@ -168,12 +219,86 @@ {{- define "common.fullname.nexus" -}} {{- $name := ( include "common.name.nexus" . ) -}} - {{- printf "%s-%s" .Release.Namespace $name | trunc 63 | trimSuffix "-" -}} + {{- $namespace := ( include "common.namespace.infra" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} {{- end -}} +{{- define "common.name.chartmuseum" -}} + {{- if .Values.chartmuseum -}} + {{- if .Values.chartmuseum.nameOverride -}} + {{- printf "%s" .Values.chartmuseum.nameOverride -}} + {{- else -}} + {{- printf "chartmuseum" -}} + {{- end -}} + {{- else -}} + {{- printf "chartmuseum" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.chartmuseum" -}} + {{- $name := ( include "common.name.chartmuseum" . ) -}} + {{- $namespace := ( include "common.namespace.infra" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{- define "common.name.dashboard" -}} + {{- if .Values.dashboard -}} + {{- if .Values.dashboard.nameOverride -}} + {{- printf "%s" .Values.dashboard.nameOverride -}} + {{- else -}} + {{- printf "dashboard" -}} + {{- end -}} + {{- else -}} + {{- printf "dashboard" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.dashboard" -}} + {{- $name := ( include "common.name.dashboard" . ) -}} + {{- $namespace := ( include "common.namespace.aux" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- define "common.name.messagerouter" -}} + {{- if .Values.messagerouter -}} + {{- if .Values.messagerouter.nameOverride -}} + {{- printf "%s" .Values.messagerouter.nameOverride -}} + {{- else -}} + {{- printf "messagerouter" -}} + {{- end -}} + {{- else -}} + {{- printf "messagerouter" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.messagerouter" -}} + {{- $name := ( include "common.name.messagerouter" . ) -}} + {{- $namespace := ( include "common.namespace.aux" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- define "common.name.ves" -}} + {{- if .Values.ves -}} + {{- if .Values.ves.nameOverride -}} + {{- printf "%s" .Values.ves.nameOverride -}} + {{- else -}} + {{- printf "ves" -}} + {{- end -}} + {{- else -}} + {{- printf "ves" -}} + {{- end -}} +{{- end -}} + + +{{- define "common.fullname.ves" -}} + {{- $name := ( include "common.name.ves" . ) -}} + {{- $namespace := ( include "common.namespace.aux" . ) -}} + {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} {{- define "common.name" -}} {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}