Merge "vvp -- VNF Validation Platform"
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-api / 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: {{ .Release.Name }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ .Release.Name }}
33     spec:
34       initContainers:
35       - command:
36         - /root/ready.py
37         args:
38         - --container-name
39         - oof-has-controller
40         - --container-name
41         - aaf-service
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         - "{{ .Release.Name }}-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" . }}-has-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-api
91           - --port={{ .Values.service.internalPort }}
92           - --
93           - --config-file=/usr/local/bin/conductor.conf
94           ports:
95           - containerPort: {{ .Values.service.internalPort }}
96           # disable liveness probe when breakpoints set in debugger
97           # so K8s doesn't restart unresponsive container
98           {{- if .Values.liveness.enabled }}
99           livenessProbe:
100             tcpSocket:
101               port: {{ .Values.service.internalPort }}
102             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
103             periodSeconds: {{ .Values.liveness.periodSeconds }}
104           {{ end -}}
105           readinessProbe:
106             tcpSocket:
107               port: {{ .Values.service.internalPort }}
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/AAF_RootCA.cer
122             name: {{ .Values.global.commonConfigPrefix }}-config
123             subPath: AAF_RootCA.cer
124           resources:
125 {{ include "common.resources" . | indent 12 }}
126         {{- if .Values.nodeSelector }}
127         nodeSelector:
128 {{ toYaml .Values.nodeSelector | indent 10 }}
129         {{- end -}}
130         {{- if .Values.affinity }}
131         affinity:
132 {{ toYaml .Values.affinity | indent 10 }}
133         {{- end }}
134       volumes:
135         - name: localtime
136           hostPath:
137             path: /etc/localtime
138         - name: {{ .Values.global.commonConfigPrefix }}-config
139           configMap:
140             name: {{ .Values.global.commonConfigPrefix  }}-configmap
141             items:
142             - key: conductor.conf
143               path: conductor.conf
144             - key: log.conf
145               path: log.conf
146             - key: AAF_RootCA.cer
147               path: AAF_RootCA.cer
148       imagePullSecrets:
149       - name: "{{ include "common.namespace" . }}-docker-registry-key"