blob: 62dfeda8e4947c5a94d93ff458dc95b4122b3056 [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
Alexis de Talhouët63df1632019-03-20 08:17:58 -040038 - cds-db
Prathamesh Morde93da1272019-06-24 10:36:15 -040039 {{- if .Values.dmaapEnabled }}
40 - --container-name
41 - message-router
42 {{ end }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050043 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
49 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51 name: {{ include "common.name" . }}-readiness
52 containers:
53 - name: {{ include "common.name" . }}
54 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
55 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56 env:
57 - name: APP_CONFIG_HOME
58 value: {{ .Values.config.appConfigDir }}
59 ports:
60 - containerPort: {{ .Values.service.http.internalPort }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050061 - containerPort: {{ .Values.service.grpc.internalPort }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050062 # disable liveness probe when breakpoints set in debugger
63 # so K8s doesn't restart unresponsive container
64 {{ if .Values.liveness.enabled }}
65 livenessProbe:
66 httpGet:
67 path: /api/v1/execution-service/ping
68 port: {{ .Values.service.http.internalPort }}
Munir Ahmad597db662019-03-26 08:17:11 -040069 httpHeaders:
70 - name: Authorization
71 value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050072 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
73 periodSeconds: {{ .Values.liveness.periodSeconds }}
74 {{ end }}
75 readinessProbe:
76 httpGet:
77 path: /api/v1/execution-service/ping
78 port: {{ .Values.service.http.internalPort }}
Munir Ahmad597db662019-03-26 08:17:11 -040079 httpHeaders:
80 - name: Authorization
81 value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050082 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
83 periodSeconds: {{ .Values.liveness.periodSeconds }}
84 volumeMounts:
85 - mountPath: /etc/localtime
86 name: localtime
87 readOnly: true
88 - mountPath: {{ .Values.config.appConfigDir }}/application.properties
89 name: {{ include "common.fullname" . }}-config
90 subPath: application.properties
91 - mountPath: {{ .Values.config.appConfigDir }}/logback.xml
92 name: {{ include "common.fullname" . }}-config
93 subPath: logback.xml
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040094 - mountPath: {{ .Values.persistence.deployedBlueprint }}
95 name: {{ include "common.fullname" . }}-blueprints
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050096 resources:
97{{ include "common.resources" . | indent 12 }}
98 {{- if .Values.nodeSelector }}
99 nodeSelector:
100{{ toYaml .Values.nodeSelector | indent 10 }}
101 {{- end -}}
102 {{- if .Values.affinity }}
103 affinity:
104{{ toYaml .Values.affinity | indent 10 }}
105 {{- end }}
106 volumes:
107 - name: localtime
108 hostPath:
109 path: /etc/localtime
110 - name: {{ include "common.fullname" . }}-config
111 configMap:
112 name: {{ include "common.fullname" . }}-configmap
113 items:
114 - key: application.properties
115 path: application.properties
116 - key: logback.xml
117 path: logback.xml
Alexis de Talhouët108e28f2019-04-14 18:54:56 -0400118 - name: {{ include "common.fullname" . }}-blueprints
119 persistentVolumeClaim:
120 claimName: {{ .Release.Name }}-cds-blueprints
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500121 imagePullSecrets:
122 - name: "{{ include "common.namespace" . }}-docker-registry-key"