Merge "Bump version of readiness image"
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-controller / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T,VMware
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 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ include "common.release" . }}
33     spec:
34       initContainers:
35       - name: {{ include "common.name" . }}-readiness
36         command:
37         - /root/ready.py
38         args:
39         - --container-name
40         - music-springboot
41         - --container-name
42         - aaf-sms
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51
52       - name: {{ include "common.name" . }}-onboard-readiness
53         command:
54         - /root/job_complete.py
55         args:
56         - -j
57         - "{{ include "common.release" . }}-oof-has-onboard"
58         env:
59         - name: NAMESPACE
60           valueFrom:
61             fieldRef:
62               apiVersion: v1
63               fieldPath: metadata.namespace
64         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
65         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66
67       - name: {{ include "common.name" . }}-cont-sms-readiness
68         command:
69         - sh
70         - -c
71         - resp="FAILURE";
72           until [ $resp = "200" ]; do
73           resp=$(curl -s -o /dev/null -k --write-out %{http_code} https://aaf-sms.{{ include "common.namespace" . }}:10443/v1/sms/domain/has/secret);
74           echo $resp;
75           sleep 2;
76           done
77         env:
78         - name: NAMESPACE
79           valueFrom:
80             fieldRef:
81               apiVersion: v1
82               fieldPath: metadata.namespace
83         image: "{{ .Values.global.dockerHubRepository }}/{{ .Values.global.curlImage }}"
84         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
85       containers:
86         - name: {{ include "common.name" . }}
87           image: "{{ include "common.repository" . }}/{{ .Values.global.image.optf_has }}"
88           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
89           command:
90           - python
91           args:
92           - /usr/local/bin/conductor-controller
93           - --config-file=/usr/local/bin/conductor.conf
94           # disable liveness probe when breakpoints set in debugger
95           # so K8s doesn't restart unresponsive container
96           {{- if .Values.liveness.enabled }}
97           livenessProbe:
98             exec:
99               command:
100               - cat
101               - /usr/local/bin/healthy.sh
102             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
103             periodSeconds: {{ .Values.liveness.periodSeconds }}
104           {{ end -}}
105           readinessProbe:
106             exec:
107               command:
108               - cat
109               - /usr/local/bin/healthy.sh
110             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
111             periodSeconds: {{ .Values.readiness.periodSeconds }}
112           env:
113           volumeMounts:
114           - mountPath: /etc/localtime
115             name: localtime
116             readOnly: true
117           - mountPath: /usr/local/bin/conductor.conf
118             name: {{ .Values.global.commonConfigPrefix }}-config
119             subPath: conductor.conf
120           - mountPath: /usr/local/bin/log.conf
121             name: {{ .Values.global.commonConfigPrefix }}-config
122             subPath: log.conf
123           - mountPath: /usr/local/bin/healthy.sh
124             name: {{ .Values.global.commonConfigPrefix }}-config
125             subPath: healthy.sh
126           - mountPath: /usr/local/bin/AAF_RootCA.cer
127             name: {{ .Values.global.commonConfigPrefix }}-config
128             subPath: AAF_RootCA.cer
129           resources:
130 {{ include "common.resources" . | indent 12 }}
131         {{- if .Values.nodeSelector }}
132         nodeSelector:
133 {{ toYaml .Values.nodeSelector | indent 10 }}
134         {{- end -}}
135         {{- if .Values.affinity }}
136         affinity:
137 {{ toYaml .Values.affinity | indent 10 }}
138         {{- end }}
139       volumes:
140         - name: localtime
141           hostPath:
142             path: /etc/localtime
143         - name: {{ .Values.global.commonConfigPrefix }}-config
144           configMap:
145             name: {{ .Values.global.commonConfigPrefix }}-configmap
146             items:
147             - key: conductor.conf
148               path: conductor.conf
149             - key: log.conf
150               path: log.conf
151             - key: healthy.sh
152               path: healthy.sh
153             - key: AAF_RootCA.cer
154               path: AAF_RootCA.cer
155       imagePullSecrets:
156       - name: "{{ include "common.namespace" . }}-docker-registry-key"