[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / oof / components / oof-cmso / components / oof-cmso-optimizer / templates / deployment.yaml
1 {{/*
2 # Copyright © 2018 AT&T
3 # Copyright (C) 2020 Wipro Limited.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: apps/v1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   selector:
30     matchLabels:
31       app: {{ include "common.name" . }}
32   replicas: {{ .Values.replicaCount }}
33   template:
34     metadata:
35       labels:
36         app: {{ include "common.name" . }}
37         release: {{ include "common.release" . }}
38     spec:
39       initContainers:
40       - command:
41         - /app/ready.py
42         args:
43         - --container-name
44         - {{ .Values.config.db.container }}
45         env:
46         - name: NAMESPACE
47           valueFrom:
48             fieldRef:
49               apiVersion: v1
50               fieldPath: metadata.namespace
51         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: {{ include "common.name" . }}-readiness
54       - name: {{ include "common.name" . }}-db-config-readiness
55         command:
56         - /app/ready.py
57         args:
58         - -j
59         - "{{ include "common.release" . }}-cmso-db-config-config-job"
60         env:
61         - name: NAMESPACE
62           valueFrom:
63             fieldRef:
64               apiVersion: v1
65               fieldPath: metadata.namespace
66         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
67         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68       - name: {{ include "common.name" . }}-chown
69         command: ["/bin/sh", "-c", "chown -Rf 1000:1000 /share/"]
70         image: "{{ .Values.global.busyBoxRepository }}/{{ .Values.global.busyBoxImage }}"
71         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
72         volumeMounts:
73         - name: {{ include "common.fullname" . }}-logs
74           mountPath: /share/logs
75       - name: db-init
76         image: "{{ include "common.repository" . }}/{{ .Values.dbinit.image }}"
77         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
78         env:
79         - name: DB_HOST
80           value: {{ .Values.config.db.host }}.{{.Release.Namespace}}
81         - name: DB_PORT
82           value: {{ .Values.config.db.port | quote}}
83         - name: DB_USERNAME
84           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cmso-db-user-secret" "key" "login") | indent 10}}
85         - name: DB_SCHEMA
86           value: {{ .Values.config.db.mysqlDatabase }}
87         - name: DB_PASSWORD
88           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cmso-db-user-secret" "key" "password") | indent 10}}
89         terminationMessagePolicy: File
90         volumeMounts:
91         - name: {{ include "common.fullname" . }}-config
92           mountPath: /share/etc/config
93         - name: {{ include "common.fullname" . }}-logs
94           mountPath: /share/logs
95 {{ include "common.certInitializer.initContainer" . | indent 6 }}
96       containers:
97       - name: {{ include "common.name" . }}
98         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
99         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
100         env:
101         - name: DB_HOST
102           value: {{ .Values.config.db.host }}.{{.Release.Namespace}}
103         - name: DB_PORT
104           value: {{ .Values.config.db.port | quote}}
105         - name: DB_USERNAME
106           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cmso-db-user-secret" "key" "login") | indent 10}}
107         - name: DB_SCHEMA
108           value: {{ .Values.config.db.mysqlDatabase }}
109         - name: DB_PASSWORD
110           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cmso-db-user-secret" "key" "password") | indent 10}}
111         - name: JAVA_TRUSTSTORE
112           value: /share/etc/osaaf/local/{{ .Values.global.truststoreFile }}
113         - name: SSL_KEYSTORE
114           value: /share/etc/osaaf/local/{{ .Values.global.keystoreFile }}
115         - name: JAVA_TRUSTSTORE_PASSWORD
116           value: {{ .Values.global.truststorePassword }}
117         - name: AUTHENTICATION
118           value: {{ .Values.global.authentication }}
119         command:
120         - /bin/sh
121         args:
122         - "-c"
123         - |
124           export SSL_KEYSTORE_PASSWORD=$(cat /share/etc/osaaf/local/.pass)
125           ./startService.sh
126         ports:
127         - containerPort: {{ .Values.service.internalPort }}
128         # disable liveness probe when breakpoints set in debugger
129         # so K8s doesn't restart unresponsive container
130         {{- if eq .Values.liveness.enabled true }}
131         livenessProbe:
132           tcpSocket:
133             port: {{ .Values.service.internalPort }}
134           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
135           periodSeconds: {{ .Values.liveness.periodSeconds }}
136         {{ end -}}
137         readinessProbe:
138           tcpSocket:
139             port: {{ .Values.service.internalPort }}
140           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
141           periodSeconds: {{ .Values.readiness.periodSeconds }}
142         volumeMounts:
143 {{ include "common.certInitializer.volumeMount" . | indent 8 }}
144         - name: {{ include "common.fullname" . }}-logs
145           mountPath: /share/logs
146         - name: {{ include "common.fullname" . }}-logs
147           mountPath: /share/debug-logs
148         - name: {{ include "common.fullname" . }}-config
149           mountPath: /share/etc/config
150         - name: {{ include "common.fullname" . }}-certs
151           mountPath: /share/etc/certs
152         - name: {{ include "common.fullname" . }}-certs
153           mountPath: /opt/app/cmso/src/main/resources/aaf
154         resources:
155 {{ include "common.resources" . | indent 12 }}
156         {{- if .Values.nodeSelector }}
157         nodeSelector:
158 {{ toYaml .Values.nodeSelector | indent 10 }}
159         {{- end -}}
160         {{- if .Values.affinity }}
161         affinity:
162 {{ toYaml .Values.affinity | indent 10 }}
163         {{- end }}
164       volumes:
165         {{ include "common.certInitializer.volumes" . | nindent 8 }}
166         - name: {{ include "common.fullname" . }}-config
167           configMap:
168             name: {{ include "common.fullname" . }}
169             items:
170             - key: logback.xml
171               path: logback.xml
172             - key: cadi.properties
173               path: cadi.properties
174             - key: optimizer.properties
175               path: optimizer.properties
176             - key: liquibase.properties
177               path: liquibase.properties
178         - name:  {{ include "common.fullname" . }}-logs
179           emptyDir: {}
180         - name: {{ include "common.fullname" . }}-certs
181           secret:
182             secretName: {{ include "common.release" . }}-{{ .Values.global.commonConfigPrefix }}-certs
183       imagePullSecrets:
184       - name: "{{ include "common.namespace" . }}-docker-registry-key"