blob: dc8cbb5aafd93e0011675651344154752440ad05 [file] [log] [blame]
Daniel Silverthorn48f10702018-03-08 10:02:21 -05001# Copyright © 2018 Amdocs, AT&T
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 Bell Canada
Daniel Silverthorn48f10702018-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:
vagrant1a3a3552018-03-10 23:56:32 +000034 initContainers:
35 - command:
36 - /root/ready.py
37 args:
38 - --container-name
39 - aai-resources
sblimkie1cee51a2018-04-20 10:50:48 -040040 - --container-name
BorislavGf923b2e2018-05-08 15:18:57 +000041 - message-router-kafka
vagrant1a3a3552018-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 Silverthorn48f10702018-03-08 10:02:21 -050051 containers:
52 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000053 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Daniel Silverthorn48f10702018-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
kj05b57f82018-03-28 18:10:32 +030059 {{ if .Values.liveness.enabled }}
Daniel Silverthorn48f10702018-03-08 10:02:21 -050060 livenessProbe:
61 tcpSocket:
62 port: {{ .Values.service.internalPort }}
63 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
64 periodSeconds: {{ .Values.liveness.periodSeconds }}
kj05b57f82018-03-28 18:10:32 +030065 {{ end }}
Daniel Silverthorn48f10702018-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 Silverthorn82cee4d2018-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 Silverthorn48f10702018-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
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
Daniel Silverthorn48f10702018-03-08 10:02:21 -0500117 - name: {{ include "common.fullname" . }}-config
118 configMap:
Daniel Silverthorn82cee4d2018-03-28 19:18:19 +0000119 name: {{ include "common.fullname" . }}
Daniel Silverthorn48f10702018-03-08 10:02:21 -0500120 items:
121 - key: champ-api.properties
122 path: champ-api.properties
123 - name: {{ include "common.fullname" . }}-secrets
124 secret:
Daniel Silverthorn82cee4d2018-03-28 19:18:19 +0000125 secretName: {{ include "common.fullname" . }}-champ
Daniel Silverthorn48f10702018-03-08 10:02:21 -0500126 - name: {{ include "common.fullname" . }}-dynamic-config
127 configMap:
Daniel Silverthorn82cee4d2018-03-28 19:18:19 +0000128 name: {{ include "common.fullname" . }}-dynamic
Daniel Silverthorn48f10702018-03-08 10:02:21 -0500129 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"