[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / common / dgbuilder / templates / deployment.yaml
1 {{/*
2 # Copyright © 2018 AT&T, Amdocs, Bell Canada
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.fullname" . }}
21   namespace: {{ include "common.namespace" . }}
22   labels:
23     app: {{ include "common.name" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ include "common.release" . }}
26     heritage: {{ .Release.Service }}
27 spec:
28   replicas: {{ .Values.replicaCount }}
29   selector:
30     matchLabels:
31       app: {{ include "common.name" . }}
32   template:
33     metadata:
34       labels:
35         app: {{ include "common.name" . }}
36         release: {{ include "common.release" . }}
37     spec:
38       initContainers:
39       - command:
40         - sh
41         args:
42         - -c
43         - "cd /config-input && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done"
44         env:
45         - name: DB_USER
46           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
47         - name: DB_PASSWORD
48           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
49         - name: HTTP_USER
50           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "http-user-creds" "key" "login") | indent 10 }}
51         - name: HTTP_PASSWORD
52           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "http-user-creds" "key" "password") | indent 10 }}
53         - name: HTTP_ADMIN_USER
54           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "admin-creds" "key" "login") | indent 10 }}
55         - name: HTTP_ADMIN_PASSWORD
56           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "admin-creds" "key" "password") | indent 10 }}
57         - name: HTTP_NODE_USER
58           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "node-creds" "key" "login") | indent 10 }}
59         - name: HTTP_NODE_PASSWORD
60           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "node-creds" "key" "password") | indent 10 }}
61         - name: REST_CONF_USER
62           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restconf-creds" "key" "login") | indent 10 }}
63         - name: REST_CONF_PASSWORD
64           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restconf-creds" "key" "password") | indent 10 }}
65         volumeMounts:
66         - mountPath: /config-input
67           name: config-input
68         - mountPath: /config
69           name: config
70         image: "{{ .Values.global.envsubstImage }}"
71         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
72         name: {{ include "common.name" . }}-update-config
73       - command:
74         - /app/ready.py
75         args:
76         - --container-name
77         - {{ .Values.config.dbPodName }}
78         env:
79         - name: NAMESPACE
80           valueFrom:
81             fieldRef:
82               apiVersion: v1
83               fieldPath: metadata.namespace
84         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
85         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
86         name: {{ include "common.name" . }}-readiness
87       containers:
88         - name: {{ include "common.name" . }}
89           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
90           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
91           command: ["/bin/bash"]
92           args: ["-c", "cd /opt/onap/ccsdk/dgbuilder/ && ./start.sh sdnc1.0 && wait"]
93           ports:
94           - containerPort: {{ .Values.service.internalPort }}
95           readinessProbe:
96             tcpSocket:
97               port: {{ .Values.service.internalPort }}
98             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
99             periodSeconds: {{ .Values.readiness.periodSeconds }}
100           env:
101           - name: SDNC_CONFIG_DIR
102             value: /opt/onap/sdnc/data/properties
103           volumeMounts:
104           - mountPath: /etc/localtime
105             name: localtime
106             readOnly: true
107           - name: config
108             mountPath: /opt/app/application.properties
109             subPath: application.properties
110           - name: config
111             mountPath: /opt/onap/ccsdk/dgbuilder/releases/sdnc1.0/conf/svclogic.properties
112             subPath: svclogic.properties
113           - name: config
114             mountPath: /opt/onap/ccsdk/dgbuilder/svclogic/svclogic.properties
115             subPath: svclogic.properties
116           - name: config
117             mountPath: /opt/onap/ccsdk/dgbuilder/releases/sdnc1.0/customSettings.js
118             subPath: customSettings.js
119           resources:
120 {{ include "common.resources" . | indent 12 }}
121         {{- if .Values.nodeSelector }}
122         nodeSelector:
123 {{ toYaml .Values.nodeSelector | indent 10 }}
124         {{- end -}}
125         {{- if .Values.affinity }}
126         affinity:
127 {{ toYaml .Values.affinity | indent 10 }}
128         {{- end }}
129       volumes:
130         - name: localtime
131           hostPath:
132             path: /etc/localtime
133         - name: config-input
134           configMap:
135             name: {{ include "common.fullname" . }}-config
136         - name: config
137           emptyDir:
138             medium: Memory
139       imagePullSecrets:
140       - name: "{{ include "common.namespace" . }}-docker-registry-key"