blob: 15ed32fbd26752f437b1dd570632e88d572ab73a [file] [log] [blame]
Mike Elliott37cae252018-09-12 14:45:40 -04001# Copyright (c) 2018 Amdocs, Bell Canada
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
15apiVersion: extensions/v1beta1
16kind: Deployment
17metadata:
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 }}
25spec:
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 - {{ index .Values "mariadb-galera" "nameOverride" }}
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: "{{ include "common.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: APPLICATIONNAME
70 value: {{ .Values.config.applicationName }}
71 - name: BUNDLEVERSION
72 value: {{ .Values.config.bundleVersion }}
73 - name: APP_CONFIG_HOME
74 value: {{ .Values.config.appConfigDir }}
75 - name: DB_URL
76 value: {{ .Values.config.dbUrl }}
77 - name: DB_USER
78 value: {{ index .Values "mariadb-galera" "config" "userName" }}
79 - name: DB_PASSWORD
80 valueFrom:
81 secretKeyRef:
82 name: {{ template "common.fullname" . }}
83 key: db-root-password
Alexis de Talhouƫt43c67e02018-09-20 16:49:16 -040084 - name: MS_USER
85 valueFrom:
86 secretKeyRef:
87 name: {{ template "common.fullname" . }}
88 key: restUser
89 - name: MS_PASSWORD
90 valueFrom:
91 secretKeyRef:
92 name: {{ template "common.fullname" . }}
93 key: restPassword
Mike Elliott37cae252018-09-12 14:45:40 -040094 - name: INIT_DATA_LOAD
95 value: {{ .Values.config.initDataLoad | quote }}
96 - name: STICKYSELECTORKEY
97 value: {{ .Values.config.stickySelectorKey | quote }}
98 - name: ENVCONTEXT
99 value: {{ .Values.config.envContext }}
100 volumeMounts:
101 - mountPath: /etc/localtime
102 name: localtime
103 readOnly: true
104 - mountPath: {{ .Values.config.appConfigDir }}/application.properties
105 name: {{ include "common.fullname" . }}-config
106 subPath: application.properties
107 - mountPath: {{ .Values.config.appConfigDir }}/logback.xml
108 name: {{ include "common.fullname" . }}-config
109 subPath: logback.xml
110 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000111{{ include "common.resources" . | indent 12 }}
Mike Elliott37cae252018-09-12 14:45:40 -0400112 {{- if .Values.nodeSelector }}
113 nodeSelector:
114{{ toYaml .Values.nodeSelector | indent 10 }}
115 {{- end -}}
116 {{- if .Values.affinity }}
117 affinity:
118{{ toYaml .Values.affinity | indent 10 }}
119 {{- end }}
120
121 volumes:
122 - name: localtime
123 hostPath:
124 path: /etc/localtime
125 - name: {{ include "common.fullname" . }}-config
126 configMap:
127 name: {{ include "common.fullname" . }}-configmap
128 items:
129 - key: application.properties
130 path: application.properties
131 - key: logback.xml
132 path: logback.xml
133 imagePullSecrets:
134 - name: "{{ include "common.namespace" . }}-docker-registry-key"