Merge "vvp -- VNF Validation Platform"
[oom.git] / kubernetes / oof / charts / oof-cmso / charts / oof-cmso-service / templates / deployment.yaml
1 # Copyright © 2018 AT&T
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - {{ .Values.mariadb.nameOverride }}
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         name: {{ include "common.name" . }}-readiness
48       - name: db-init
49         image: "{{ include "common.repository" . }}/{{ .Values.dbinit.image }}"
50         imagePullPolicy: Always
51         env:
52         - name: DB_HOST
53           value: {{ .Values.config.db_host }}.{{.Release.Namespace}}
54         - name: DB_PORT
55           value: {{ .Values.config.db_port | quote}}
56         - name: DB_USERNAME
57           value: {{ .Values.config.db_root }}
58         - name: DB_SCHEMA
59           value: {{ .Values.config.mysqlDatabase }}
60         - name: DB_PASSWORD
61           valueFrom:
62             secretKeyRef:
63               name: {{ .Release.Name}}-cmso-db
64               key: db-root-password
65         terminationMessagePolicy: File
66         volumeMounts:
67         - name: {{ include "common.fullname" . }}-config
68           mountPath: /share/etc/config
69         - name: {{ include "common.fullname" . }}-logs   
70           mountPath: /share/logs
71       containers:
72       - name: {{ include "common.name" . }}
73         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
74         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
75         env:
76         - name: DB_HOST
77           value: {{ .Values.config.db_host }}.{{.Release.Namespace}}
78         - name: DB_PORT
79           value: {{ .Values.config.db_port | quote}}
80         - name: DB_USERNAME
81           value: {{ .Values.config.db_user }}
82         - name: DB_SCHEMA
83           value: {{ .Values.config.mysqlDatabase }}
84         - name: DB_PASSWORD
85           valueFrom:
86             secretKeyRef:
87               name: {{ .Release.Name}}-cmso-db
88               key: user-password
89         ports:
90         - containerPort: {{ .Values.service.internalPort }}
91         # disable liveness probe when breakpoints set in debugger
92         # so K8s doesn't restart unresponsive container
93         {{- if eq .Values.liveness.enabled true }}
94         livenessProbe:
95           tcpSocket:
96             port: {{ .Values.service.internalPort }}
97           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
98           periodSeconds: {{ .Values.liveness.periodSeconds }}
99         {{ end -}}
100         readinessProbe:
101           tcpSocket:
102             port: {{ .Values.service.internalPort }}
103           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
104           periodSeconds: {{ .Values.readiness.periodSeconds }}
105         volumeMounts:
106         - name: {{ include "common.fullname" . }}-logs
107           mountPath: /share/logs
108         - name: {{ include "common.fullname" . }}-logs
109           mountPath: /share/debug-logs
110         - name: {{ include "common.fullname" . }}-config
111           mountPath: /share/etc/config 
112         resources:
113 {{ include "common.resources" . | indent 12 }}
114         {{- if .Values.nodeSelector }}
115         nodeSelector:
116 {{ toYaml .Values.nodeSelector | indent 10 }}
117         {{- end -}}
118         {{- if .Values.affinity }}
119         affinity:
120 {{ toYaml .Values.affinity | indent 10 }}
121         {{- end }}
122       volumes:
123         - name: {{ include "common.fullname" . }}-config
124           configMap:
125             name: {{ include "common.fullname" . }}
126             items:
127             - key: logback.xml
128               path: logback.xml
129             - key: cmso.properties
130               path: cmso.properties
131             - key: optimizer.properties
132               path: optimizer.properties
133             - key: ticketmgt.properties
134               path: ticketmgt.properties
135             - key: liquibase.properties
136               path: liquibase.properties
137         - name:  {{ include "common.fullname" . }}-logs
138           emptyDir: {}
139       imagePullSecrets:
140       - name: "{{ include "common.namespace" . }}-docker-registry-key"