Merge "redis config optimization"
[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       - command:
36         - /root/ready.py
37         args:
38         - --container-name
39         - music-tomcat
40         - --container-name
41         - aaf-sms
42         env:
43         - name: NAMESPACE
44           valueFrom:
45             fieldRef:
46               apiVersion: v1
47               fieldPath: metadata.namespace
48         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
49         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50         name: {{ include "common.name" . }}-readiness
51       - command:
52         - /root/job_complete.py
53         args:
54         - -j
55         - "{{ include "common.release" . }}-oof-has-onboard"
56         env:
57         - name: NAMESPACE
58           valueFrom:
59             fieldRef:
60               apiVersion: v1
61               fieldPath: metadata.namespace
62         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
63         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
64         name: {{ include "common.name" . }}-onboard-readiness
65       - command:
66         - sh
67         - -c
68         - resp="FAILURE";
69           until [ $resp = "200" ]; do
70           resp=$(curl -s -o /dev/null -k --write-out %{http_code} https://aaf-sms.{{ include "common.namespace" . }}:10443/v1/sms/domain/has/secret);
71           echo $resp;
72           sleep 2;
73           done
74         env:
75         - name: NAMESPACE
76           valueFrom:
77             fieldRef:
78               apiVersion: v1
79               fieldPath: metadata.namespace
80         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
81         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
82         name: {{ include "common.name" . }}-cont-sms-readiness
83       containers:
84         - name: {{ include "common.name" . }}
85           image: "{{ include "common.repository" . }}/{{ .Values.global.image.optf_has }}"
86           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
87           command:
88           - python
89           args:
90           - /usr/local/bin/conductor-controller
91           - --config-file=/usr/local/bin/conductor.conf
92           # disable liveness probe when breakpoints set in debugger
93           # so K8s doesn't restart unresponsive container
94           {{- if .Values.liveness.enabled }}
95           livenessProbe:
96             exec:
97               command:
98               - cat
99               - /usr/local/bin/healthy.sh
100             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
101             periodSeconds: {{ .Values.liveness.periodSeconds }}
102           {{ end -}}
103           readinessProbe:
104             exec:
105               command:
106               - cat
107               - /usr/local/bin/healthy.sh
108             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
109             periodSeconds: {{ .Values.readiness.periodSeconds }}
110           env:
111           volumeMounts:
112           - mountPath: /etc/localtime
113             name: localtime
114             readOnly: true
115           - mountPath: /usr/local/bin/conductor.conf
116             name: {{ .Values.global.commonConfigPrefix }}-config
117             subPath: conductor.conf
118           - mountPath: /usr/local/bin/log.conf
119             name: {{ .Values.global.commonConfigPrefix }}-config
120             subPath: log.conf
121           - mountPath: /usr/local/bin/healthy.sh
122             name: {{ .Values.global.commonConfigPrefix }}-config
123             subPath: healthy.sh
124           - mountPath: /usr/local/bin/AAF_RootCA.cer
125             name: {{ .Values.global.commonConfigPrefix }}-config
126             subPath: AAF_RootCA.cer
127           resources:
128 {{ include "common.resources" . | indent 12 }}
129         {{- if .Values.nodeSelector }}
130         nodeSelector:
131 {{ toYaml .Values.nodeSelector | indent 10 }}
132         {{- end -}}
133         {{- if .Values.affinity }}
134         affinity:
135 {{ toYaml .Values.affinity | indent 10 }}
136         {{- end }}
137       volumes:
138         - name: localtime
139           hostPath:
140             path: /etc/localtime
141         - name: {{ .Values.global.commonConfigPrefix }}-config
142           configMap:
143             name: {{ .Values.global.commonConfigPrefix }}-configmap
144             items:
145             - key: conductor.conf
146               path: conductor.conf
147             - key: log.conf
148               path: log.conf
149             - key: healthy.sh
150               path: healthy.sh
151             - key: AAF_RootCA.cer
152               path: AAF_RootCA.cer
153       imagePullSecrets:
154       - name: "{{ include "common.namespace" . }}-docker-registry-key"