Merge "Add chartmuseum as the helm repo"
authorLusheng Ji <lji@research.att.com>
Mon, 22 Jul 2019 19:47:44 +0000 (19:47 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Mon, 22 Jul 2019 19:47:44 +0000 (19:47 +0000)
1  2 
ric-common/Common-Template/helm/ric-common/templates/_configmapname.tpl
ric-common/Common-Template/helm/ric-common/templates/_containername.tpl
ric-common/Common-Template/helm/ric-common/templates/_deploymentname.tpl
ric-common/Common-Template/helm/ric-common/templates/_ingressname.tpl
ric-common/Common-Template/helm/ric-common/templates/_servicename.tpl

    {{- printf "configmap-%s" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
 +{{- define "common.configmapname.submgr" -}}
 +  {{- $name := ( include "common.fullname.submgr" . ) -}}
 +  {{- printf "configmap-%s" $name | trunc 63 | trimSuffix "-" -}}
 +{{- end -}}
 +
  {{- define "common.configmapname.a1mediator" -}}
    {{- $name := ( include "common.fullname.a1mediator" . ) -}}
    {{- printf "configmap-%s" $name | trunc 63 | trimSuffix "-" -}}
    {{- printf "configmap-%s" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
+ {{- define "common.configmapname.chartmuseum" -}}
+   {{- $name := ( include "common.fullname.chartmuseum" . ) -}}
+   {{- printf "configmap-%s" $name | trunc 63 | trimSuffix "-" -}}
+ {{- end -}}
  {{- define "common.configmapname.dashboard" -}}
    {{- $name := ( include "common.fullname.dashboard" . ) -}}
    {{- printf "configmap-%s" $name | trunc 63 | trimSuffix "-" -}}
    {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
 +{{- define "common.containername.submgr" -}}
 +  {{- $name := ( include "common.fullname.submgr" . ) -}}
 +  {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
 +{{- end -}}
 +
  {{- define "common.containername.a1mediator" -}}
    {{- $name := ( include "common.fullname.a1mediator" . ) -}}
    {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
    {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
+ {{- define "common.containername.chartmuseum" -}}
+   {{- $name := ( include "common.fullname.chartmuseum" . ) -}}
+   {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
+ {{- end -}}
  {{- define "common.containername.dashboard" -}}
    {{- $name := ( include "common.fullname.dashboard" . ) -}}
    {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
    {{- printf "deployment-%s" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
 +{{- define "common.deploymentname.submgr" -}}
 +  {{- $name := ( include "common.fullname.submgr" . ) -}}
 +  {{- printf "deployment-%s" $name | trunc 63 | trimSuffix "-" -}}
 +{{- end -}}
 +
  {{- define "common.deploymentname.a1mediator" -}}
    {{- $name := ( include "common.fullname.a1mediator" . ) -}}
    {{- printf "deployment-%s" $name | trunc 63 | trimSuffix "-" -}}
    {{- printf "deployment-%s" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
+ {{- define "common.deploymentname.chartmuseum" -}}
+   {{- $name := ( include "common.fullname.chartmuseum" . ) -}}
+   {{- printf "deployment-%s" $name | trunc 63 | trimSuffix "-" -}}
+ {{- end -}}
  {{- define "common.deploymentname.dashboard" -}}
    {{- $name := ( include "common.fullname.dashboard" . ) -}}
    {{- printf "deployment-%s" $name | trunc 63 | trimSuffix "-" -}}
    {{- printf "ingress-%s" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
 +{{- define "common.ingressname.submgr" -}}
 +  {{- $name := ( include "common.fullname.submgr" . ) -}}
 +  {{- printf "ingress-%s" $name | trunc 63 | trimSuffix "-" -}}
 +{{- end -}}
 +
  {{- define "common.ingressname.a1mediator" -}}
    {{- $name := ( include "common.fullname.a1mediator" . ) -}}
    {{- printf "ingress-%s" $name | trunc 63 | trimSuffix "-" -}}
    {{- printf "ingress-%s" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
+ {{- define "common.ingressname.chartmuseum" -}}
+   {{- $name := ( include "common.fullname.chartmuseum" . ) -}}
+   {{- printf "ingress-%s" $name | trunc 63 | trimSuffix "-" -}}
+ {{- end -}}
  {{- define "common.ingressname.ves" -}}
    {{- $name := ( include "common.fullname.ves" . ) -}}
    {{- printf "ingress-%s" $name | trunc 63 | trimSuffix "-" -}}
    {{- printf "service-%s-http" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
 +{{- define "common.servicename.submgr.http" -}}
 +  {{- $name := ( include "common.fullname.submgr" . ) -}}
 +  {{- printf "service-%s-http" $name | trunc 63 | trimSuffix "-" -}}
 +{{- end -}}
 +
  {{- define "common.servicename.a1mediator.http" -}}
    {{- $name := ( include "common.fullname.a1mediator" . ) -}}
    {{- printf "service-%s-http" $name | trunc 63 | trimSuffix "-" -}}
    {{- printf "service-%s-http" $name | trunc 63 | trimSuffix "-" -}}
  {{- end -}}
  
+ {{- define "common.servicename.chartmuseum.http" -}}
+   {{- $name := ( include "common.fullname.chartmuseum" . ) -}}
+   {{- printf "service-%s-http" $name | trunc 63 | trimSuffix "-" -}}
+ {{- end -}}
  {{- define "common.servicename.dashboard.http" -}}
    {{- $name := ( include "common.fullname.dashboard" . ) -}}
    {{- printf "service-%s-http" $name | trunc 63 | trimSuffix "-" -}}