Merge "Support for dbaas(HA/SA) in deployment"
[ric-plt/ric-dep.git] / helm / dbaas1 / templates / deployment.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
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 apiVersion: apps/v1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.deploymentname.dbaas" . }}
22   namespace: {{ include "common.namespace.platform" . }}
23   labels:
24     app: {{ include "common.namespace.platform" . }}-{{ include "common.name.dbaas" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ .Release.Name }}
27     heritage: {{ .Release.Service }}
28 spec:
29   replicas: {{ .Values.dbaas.backend.replicas }}
30   selector:
31     matchLabels:
32       app: {{ include "common.namespace.platform" . }}-{{ include "common.name.dbaas" . }}
33       release: {{ .Release.Name }}
34   template:
35     metadata:
36       {{- if .Values.dbaas.annotations }}
37       annotations:
38         {{- .Values.dbaas.annotations | nindent 8 -}}
39       {{ end }}
40       labels:
41         app: {{ include "common.namespace.platform" . }}-{{ include "common.name.dbaas" . }}
42         release: {{ .Release.Name }}
43     spec:
44       imagePullSecrets:
45        {{- $ctx := dict "ctx" . "defaultregistry" .Values.dbaas.backend.image.registry }}
46        - name: {{ include "common.dockerregistry.credential" $ctx }}
47       terminationGracePeriodSeconds: {{ .Values.dbaas.backend.terminationGracePeriodSeconds }}
48       containers:
49       - image: {{ include "common.dockerregistry.url" $ctx }}/{{ .Values.dbaas.backend.image.name }}:{{ .Values.dbaas.backend.image.tag }}
50         {{- $ctx := dict "ctx" . "defaultpullpolicy" .Values.dbaas.backend.imagePullPolicy }}
51         imagePullPolicy: {{ include "common.dockerregistry.pullpolicy" $ctx  }}
52         ports:
53         - containerPort: {{ include "common.serviceport.dbaas.tcp" . }}
54           name: sql
55           protocol: TCP
56         name: {{ include "common.containername.dbaas" . }}
57       restartPolicy: Always