First draft of the SMO package based on the ONAP charts
[it/dep.git] / smo-install / oran_oom / aux-common / templates / _mariadb.tpl
1 {{/*
2 # Copyright © 2019 Orange
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 */}}
16
17 {{/*
18   Choose the name of the mariadb service to use.
19 */}}
20 {{- define "common.mariadbService" -}}
21   {{- if .Values.global.mariadbGalera.localCluster -}}
22     {{- index .Values "mariadb-galera" "service" "name" -}}
23   {{- else -}}
24     {{- .Values.global.mariadbGalera.service -}}
25   {{- end -}}
26 {{- end -}}
27
28 {{/*
29   Choose the value of mariadb port to use.
30 */}}
31 {{- define "common.mariadbPort" -}}
32   {{- if .Values.global.mariadbGalera.localCluster -}}
33     {{- index .Values "mariadb-galera" "service" "internalPort" -}}
34   {{- else -}}
35     {{- .Values.global.mariadbGalera.internalPort -}}
36   {{- end -}}
37 {{- end -}}
38
39 {{/*
40   Choose the value of secret to retrieve user value.
41 */}}
42 {{- define "common.mariadbSecret" -}}
43   {{- if .Values.global.mariadbGalera.localCluster -}}
44     {{ printf "%s-%s-db-user-credentials" (include "common.fullname" .) (index .Values "mariadb-galera" "nameOverride") -}}
45   {{- else -}}
46     {{ printf "%s-%s" (.Release.Name) (index .Values "mariadb-init" "nameOverride") -}}
47   {{- end -}}
48 {{- end -}}
49
50 {{/*
51   Choose the value of secret param to retrieve user value.
52 */}}
53 {{- define "common.mariadbSecretParam" -}}
54   {{- if .Values.global.mariadbGalera.localCluster -}}
55     {{ printf "password" -}}
56   {{- else -}}
57     {{ printf "db-user-password" -}}
58   {{- end -}}
59 {{- end -}}