blob: 56299138265ed50fd24262359a0fc92a3233b506 [file] [log] [blame]
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -05001# Copyright (c) 2019 IBM, 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 env:
53 - name: APP_CONFIG_HOME
54 value: {{ .Values.config.appConfigDir }}
55 ports:
56 - containerPort: {{ .Values.service.http.internalPort }}
57 {{ if .Values.config.grpcEnabled }}
58 - containerPort: {{ .Values.service.grpc.internalPort }}
59 {{ end }}
60 # disable liveness probe when breakpoints set in debugger
61 # so K8s doesn't restart unresponsive container
62 {{ if .Values.liveness.enabled }}
63 livenessProbe:
64 httpGet:
65 path: /api/v1/execution-service/ping
66 port: {{ .Values.service.http.internalPort }}
67 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
68 periodSeconds: {{ .Values.liveness.periodSeconds }}
69 {{ end }}
70 readinessProbe:
71 httpGet:
72 path: /api/v1/execution-service/ping
73 port: {{ .Values.service.http.internalPort }}
74 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
75 periodSeconds: {{ .Values.liveness.periodSeconds }}
76 volumeMounts:
77 - mountPath: /etc/localtime
78 name: localtime
79 readOnly: true
80 - mountPath: {{ .Values.config.appConfigDir }}/application.properties
81 name: {{ include "common.fullname" . }}-config
82 subPath: application.properties
83 - mountPath: {{ .Values.config.appConfigDir }}/logback.xml
84 name: {{ include "common.fullname" . }}-config
85 subPath: logback.xml
86 resources:
87{{ include "common.resources" . | indent 12 }}
88 {{- if .Values.nodeSelector }}
89 nodeSelector:
90{{ toYaml .Values.nodeSelector | indent 10 }}
91 {{- end -}}
92 {{- if .Values.affinity }}
93 affinity:
94{{ toYaml .Values.affinity | indent 10 }}
95 {{- end }}
96 volumes:
97 - name: localtime
98 hostPath:
99 path: /etc/localtime
100 - name: {{ include "common.fullname" . }}-config
101 configMap:
102 name: {{ include "common.fullname" . }}-configmap
103 items:
104 - key: application.properties
105 path: application.properties
106 - key: logback.xml
107 path: logback.xml
108 imagePullSecrets:
109 - name: "{{ include "common.namespace" . }}-docker-registry-key"