Add rsm and dbaas1 charts
[it/dep.git] / ric-platform / 50-RIC-Platform / 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 apiVersion: apps/v1
18 kind: Deployment
19 metadata:
20   name: {{ include "common.deploymentname.dbaas" . }}
21   namespace: {{ include "common.namespace.platform" . }}
22   labels:
23     app: {{ include "common.namespace.platform" . }}-{{ include "common.name.dbaas" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ .Release.Name }}
26     heritage: {{ .Release.Service }}
27 spec:
28   replicas: {{ .Values.dbaas.backend.replicas }}
29   selector:
30     matchLabels:
31       app: {{ include "common.namespace.platform" . }}-{{ include "common.name.dbaas" . }}
32       release: {{ .Release.Name }}
33   template:
34     metadata:
35       {{- if .Values.dbaas.annotations }}
36       annotations:
37         {{- .Values.dbaas.annotations | nindent 8 -}}
38       {{ end }}
39       labels:
40         app: {{ include "common.namespace.platform" . }}-{{ include "common.name.dbaas" . }}
41         release: {{ .Release.Name }}
42     spec:
43       imagePullSecrets:
44        - name: {{ include "common.repositoryCred" . }}
45       terminationGracePeriodSeconds: {{ .Values.dbaas.backend.terminationGracePeriodSeconds }}
46       containers:
47       - image: {{ include "common.repository" . }}/{{ .Values.dbaas.backend.image.name }}:{{ .Values.dbaas.backend.image.tag }}
48         imagePullPolicy: {{ include "common.pullPolicy" . }}
49         ports:
50         - containerPort: {{ include "common.serviceport.dbaas.tcp" . }}
51           name: sql
52           protocol: TCP
53         name: {{ include "common.containername.dbaas" . }}
54       restartPolicy: Always