blob: 0e2bb90aa7395808ff960d06ebac94ba038fca5a [file] [log] [blame]
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -05001# Copyright © 2018 Amdocs, AT&T
toshrajbhardwaj84d73b12018-08-06 07:35:14 +00002# Modifications Copyright © 2018 Bell Canada
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -05003#
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
16apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
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 }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
32 release: {{ .Release.Name }}
33 spec:
vagrant62ddc7d2018-03-10 23:56:32 +000034 initContainers:
35 - command:
36 - /root/ready.py
37 args:
38 - --container-name
39 - aai-resources
sblimkiea949bcb2018-04-20 10:50:48 -040040 - --container-name
BorislavGb20f0fc2018-05-08 15:18:57 +000041 - message-router-kafka
vagrant62ddc7d2018-03-10 23:56:32 +000042 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
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -050051 containers:
52 - name: {{ include "common.name" . }}
BorislavG809b1d72018-05-06 12:55:20 +000053 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -050054 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
kj8bc9a7c2018-03-28 18:10:32 +030059 {{ if .Values.liveness.enabled }}
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -050060 livenessProbe:
61 tcpSocket:
62 port: {{ .Values.service.internalPort }}
63 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
64 periodSeconds: {{ .Values.liveness.periodSeconds }}
kj8bc9a7c2018-03-28 18:10:32 +030065 {{ end }}
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -050066 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"
Daniel Silverthorn31023262018-03-28 19:18:19 +000076 - 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
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -050086 - 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
Shwetank Davea1fe2fb2018-08-14 09:55:46 -0400100 - mountPath: /opt/app/champ-service/bundleconfig/etc/logback.xml
101 name: {{ include "common.fullname" . }}-logback-config
102 subPath: logback.xml
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -0500103 - mountPath: /logs
104 name: {{ include "common.fullname" . }}-logs
105 resources:
106{{ toYaml .Values.resources | indent 12 }}
107 {{- if .Values.nodeSelector }}
108 nodeSelector:
109{{ toYaml .Values.nodeSelector | indent 10 }}
110 {{- end -}}
111 {{- if .Values.affinity }}
112 affinity:
113{{ toYaml .Values.affinity | indent 10 }}
114 {{- end }}
115
116 volumes:
117 - name: localtime
118 hostPath:
119 path: /etc/localtime
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -0500120 - name: {{ include "common.fullname" . }}-config
121 configMap:
Daniel Silverthorn31023262018-03-28 19:18:19 +0000122 name: {{ include "common.fullname" . }}
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -0500123 items:
124 - key: champ-api.properties
125 path: champ-api.properties
126 - name: {{ include "common.fullname" . }}-secrets
127 secret:
Daniel Silverthorn31023262018-03-28 19:18:19 +0000128 secretName: {{ include "common.fullname" . }}-champ
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -0500129 - name: {{ include "common.fullname" . }}-dynamic-config
130 configMap:
Daniel Silverthorn31023262018-03-28 19:18:19 +0000131 name: {{ include "common.fullname" . }}-dynamic
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -0500132 items:
133 - key: champ-beans.xml
134 path: champ-beans.xml
135 - name: {{ include "common.fullname" . }}-logs
136 emptyDir: {}
Shwetank Davea1fe2fb2018-08-14 09:55:46 -0400137 - name: {{ include "common.fullname" . }}-logback-config
138 configMap:
139 name: {{ include "common.fullname" . }}-log-configmap
140 items:
141 - key: logback.xml
142 path: logback.xml
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -0500143 imagePullSecrets:
144 - name: "{{ include "common.namespace" . }}-docker-registry-key"