Merge "Add Common Helm Chart "mariadb-galera""
[oom.git] / kubernetes / aai / charts / aai-champ / templates / deployment.yaml
1 # Copyright © 2018 Amdocs, AT&T
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - aai-resources
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         name: {{ include "common.name" . }}-readiness
48       containers:
49         - name: {{ include "common.name" . }}
50           image: "{{ .Values.global.repository | default .Values.repository }}/{{ .Values.image }}"
51           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52           ports:
53           - containerPort: {{ .Values.service.internalPort }}
54           # disable liveness probe when breakpoints set in debugger
55           # so K8s doesn't restart unresponsive container
56           {{ if .Values.liveness.enabled }}
57           livenessProbe:
58             tcpSocket:
59               port: {{ .Values.service.internalPort }}
60             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
61             periodSeconds: {{ .Values.liveness.periodSeconds }}
62           {{ end }}
63           readinessProbe:
64             tcpSocket:
65               port: {{ .Values.service.internalPort }}
66             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
67             periodSeconds: {{ .Values.readiness.periodSeconds }}
68           env:
69             - name: CONFIG_HOME
70               value: "/opt/app/champ-service/appconfig"
71             - name: GRAPHIMPL
72               value: "janus-deps"
73             - name: KEY_STORE_PASSWORD
74               valueFrom:
75                 secretKeyRef:
76                   name: {{ template "common.fullname" . }}-pass
77                   key: KEY_STORE_PASSWORD
78             - name: KEY_MANAGER_PASSWORD
79               valueFrom:
80                 secretKeyRef:
81                   name: {{ template "common.fullname" . }}-pass
82                   key: KEY_MANAGER_PASSWORD
83             - name: SERVICE_BEANS
84               value: "/opt/app/champ-service/dynamic/conf"
85           volumeMounts:
86           - mountPath: /etc/localtime
87             name: localtime
88             readOnly: true
89           - mountPath: /opt/app/champ-service/appconfig/champ-api.properties
90             name: {{ include "common.fullname" . }}-config
91             subPath: champ-api.properties
92           - mountPath: /opt/app/champ-service/appconfig/auth
93             name: {{ include "common.fullname" . }}-secrets
94           - mountPath: /opt/app/champ-service/dynamic/conf/champ-beans.xml
95             name: {{ include "common.fullname" . }}-dynamic-config
96             subPath: champ-beans.xml
97           - mountPath: /logs
98             name: {{ include "common.fullname" . }}-logs
99           resources:
100 {{ toYaml .Values.resources | indent 12 }}
101         {{- if .Values.nodeSelector }}
102         nodeSelector:
103 {{ toYaml .Values.nodeSelector | indent 10 }}
104         {{- end -}}
105         {{- if .Values.affinity }}
106         affinity:
107 {{ toYaml .Values.affinity | indent 10 }}
108         {{- end }}
109
110       volumes:
111         - name: localtime
112           hostPath:
113             path: /etc/localtime
114         - name: {{ include "common.fullname" . }}-config
115           configMap:
116             name: {{ include "common.fullname" . }}
117             items:
118             - key: champ-api.properties
119               path: champ-api.properties
120         - name: {{ include "common.fullname" . }}-secrets
121           secret:
122             secretName: {{ include "common.fullname" . }}-champ
123         - name: {{ include "common.fullname" . }}-dynamic-config
124           configMap:
125             name: {{ include "common.fullname" . }}-dynamic
126             items:
127             - key: champ-beans.xml
128               path: champ-beans.xml
129         - name: {{ include "common.fullname" . }}-logs
130           emptyDir: {}
131       imagePullSecrets:
132       - name: "{{ include "common.namespace" . }}-docker-registry-key"