fix sdnc.cluster script to use new NodePort prefix
[oom.git] / kubernetes / aai / charts / aai-champ / templates / deployment.yaml
1 # Copyright © 2018 Amdocs, AT&T
2 # Modifications Copyright © 2018 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 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         - aai-resources
40         - --container-name
41         - message-router-kafka
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       containers:
52         - name: {{ include "common.name" . }}
53           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
54           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55           ports:
56           - containerPort: {{ .Values.service.internalPort }}
57           # disable liveness probe when breakpoints set in debugger
58           # so K8s doesn't restart unresponsive container
59           {{ if .Values.liveness.enabled }}
60           livenessProbe:
61             tcpSocket:
62               port: {{ .Values.service.internalPort }}
63             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
64             periodSeconds: {{ .Values.liveness.periodSeconds }}
65           {{ end }}
66           readinessProbe:
67             tcpSocket:
68               port: {{ .Values.service.internalPort }}
69             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
70             periodSeconds: {{ .Values.readiness.periodSeconds }}
71           env:
72             - name: CONFIG_HOME
73               value: "/opt/app/champ-service/appconfig"
74             - name: GRAPHIMPL
75               value: "janus-deps"
76             - name: KEY_STORE_PASSWORD
77               valueFrom:
78                 secretKeyRef:
79                   name: {{ template "common.fullname" . }}-pass
80                   key: KEY_STORE_PASSWORD
81             - name: KEY_MANAGER_PASSWORD
82               valueFrom:
83                 secretKeyRef:
84                   name: {{ template "common.fullname" . }}-pass
85                   key: KEY_MANAGER_PASSWORD
86             - name: SERVICE_BEANS
87               value: "/opt/app/champ-service/dynamic/conf"
88           volumeMounts:
89           - mountPath: /etc/localtime
90             name: localtime
91             readOnly: true
92           - mountPath: /opt/app/champ-service/appconfig/champ-api.properties
93             name: {{ include "common.fullname" . }}-config
94             subPath: champ-api.properties
95           - mountPath: /opt/app/champ-service/appconfig/auth
96             name: {{ include "common.fullname" . }}-secrets
97           - mountPath: /opt/app/champ-service/dynamic/conf/champ-beans.xml
98             name: {{ include "common.fullname" . }}-dynamic-config
99             subPath: champ-beans.xml
100           - mountPath: /logs
101             name: {{ include "common.fullname" . }}-logs
102           resources:
103 {{ toYaml .Values.resources | indent 12 }}
104         {{- if .Values.nodeSelector }}
105         nodeSelector:
106 {{ toYaml .Values.nodeSelector | indent 10 }}
107         {{- end -}}
108         {{- if .Values.affinity }}
109         affinity:
110 {{ toYaml .Values.affinity | indent 10 }}
111         {{- end }}
112
113       volumes:
114         - name: localtime
115           hostPath:
116             path: /etc/localtime
117         - name: {{ include "common.fullname" . }}-config
118           configMap:
119             name: {{ include "common.fullname" . }}
120             items:
121             - key: champ-api.properties
122               path: champ-api.properties
123         - name: {{ include "common.fullname" . }}-secrets
124           secret:
125             secretName: {{ include "common.fullname" . }}-champ
126         - name: {{ include "common.fullname" . }}-dynamic-config
127           configMap:
128             name: {{ include "common.fullname" . }}-dynamic
129             items:
130             - key: champ-beans.xml
131               path: champ-beans.xml
132         - name: {{ include "common.fullname" . }}-logs
133           emptyDir: {}
134       imagePullSecrets:
135       - name: "{{ include "common.namespace" . }}-docker-registry-key"