[MODELING] Service Mesh Compatibility
[oom.git] / kubernetes / modeling / components / modeling-etsicatalog / templates / deployment.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 #
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 */}}
16
17 apiVersion: apps/v1
18 kind: Deployment
19 metadata:
20   name: {{ include "common.fullname" . }}
21   namespace: {{ include "common.namespace" . }}
22   labels:
23     app: {{ include "common.name" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ include "common.release" . }}
26     heritage: {{ .Release.Service }}
27 spec:
28   selector:
29     matchLabels:
30       app: {{ include "common.name" . }}
31   replicas: {{ .Values.replicaCount }}
32   template:
33     metadata:
34       labels:
35         app: {{ include "common.name" . }}
36         release: {{ include "common.release" . }}
37       annotations:
38         sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
39     spec:
40       initContainers:
41       - command:
42         - /app/ready.py
43         args:
44         - -j
45         - "{{ include "common.release" . }}-{{ include "common.name" . }}-config-job"
46         env:
47         - name: NAMESPACE
48           valueFrom:
49             fieldRef:
50               apiVersion: v1
51               fieldPath: metadata.namespace
52         image: {{ include "repositoryGenerator.image.readiness" . }}
53         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54         name: {{ include "common.name" . }}-job-readiness
55       {{ if .Values.config.msb_enabled }}
56       {{ include "common.readinessCheck.waitFor" (dict "dot" . "wait_for" .Values.readinessCheck.wait_for.msb ) | indent 6 | trim }}
57       {{ end }}
58       - command:
59         - /bin/sh
60         - -c
61         - chown -R 1000:1000 /service/modeling/etsicatalog/static
62         image: {{ include "repositoryGenerator.image.busybox" . }}
63         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
64         name: {{ include "common.name" . }}-init
65         volumeMounts:
66         - name: {{ include "common.fullname" . }}-etsicatalog
67           mountPath: /service/modeling/etsicatalog/static
68       containers:
69         - name: {{ include "common.name" . }}
70           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
71           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
72           ports:
73           - containerPort: {{ .Values.service.internalPort }}
74           # disable liveness probe when breakpoints set in debugger
75           # so K8s doesn't restart unresponsive container
76           {{ if .Values.liveness.enabled }}
77           livenessProbe:
78             tcpSocket:
79               port: {{ .Values.service.internalPort }}
80             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
81             periodSeconds: {{ .Values.liveness.periodSeconds }}
82           {{ end }}
83           readinessProbe:
84             tcpSocket:
85               port: {{ .Values.service.internalPort }}
86             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
87             periodSeconds: {{ .Values.readiness.periodSeconds }}
88           env:
89           {{- if and (include "common.needTLS" .) (eq .Values.config.ssl_enabled true) }}
90           - name: SSL_ENABLED
91             value: "true"
92           {{- else }}
93           - name: SSL_ENABLED
94             value: "false"
95           {{- end }}
96           - name: MSB_ENABLED
97             value: "{{ .Values.config.msb_enabled }}"
98           {{- if (include "common.needTLS" .) }}
99           - name: MSB_ADDR
100             value: "{{ .Values.config.msbProtocol }}s://{{ .Values.config.msbServiceName }}:{{ .Values.config.msbPort }}"
101           - name: SDC_ADDR
102             value: "{{ .Values.config.sdcProtocol }}s://{{ .Values.config.sdcServiceName }}:{{ .Values.config.sdcPort }}"
103           {{- else }}
104           - name: MSB_ADDR
105             value: "{{ .Values.config.msbProtocol }}://{{ .Values.config.msbServiceName }}:{{ .Values.config.msbPlainPort }}"
106           - name: SDC_ADDR
107             value: "{{ .Values.config.sdcProtocol }}://{{ .Values.config.sdcServiceName }}:{{ .Values.config.sdcPlainPort }}"
108           {{- end }}
109           - name: DMAAP_ENABLED
110             value: "{{ .Values.config.dmaap_enabled }}"
111           - name: DMAAP_ADDR
112             value: "{{ .Values.config.dmaapProtocol }}{{ (eq "true" (include "common.needTLS" .)) | ternary "s" "" }}://{{ .Values.config.dmaapServiceName }}:{{ .Values.config.dmaapPort }}"
113           - name: DB_IP
114             value: "{{ include "common.mariadbService" . }}"
115           - name: DB_PORT
116             value: "{{ include "common.mariadbPort" . }}"
117           - name: DB_USER
118             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "modeling-db-secret" "key" "login") | indent 12 }}
119           - name: DB_PASSWD
120             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "modeling-db-secret" "key" "password") | indent 12 }}
121           volumeMounts:
122           - name: {{ include "common.fullname" . }}-etsicatalog
123             mountPath: /service/modeling/etsicatalog/static
124           - name: {{ include "common.fullname" . }}-localtime
125             mountPath: /etc/localtime
126             readOnly: true
127           - name: {{ include "common.fullname" . }}-logs
128             mountPath: {{ .Values.log.path }}
129           - name: {{ include "common.fullname" . }}-logconfig
130             mountPath: /opt/modeling/etsicatalog/config/log.yml
131             subPath: log.yml
132           resources:
133 {{ include "common.resources" . | indent 12 }}
134         {{- if .Values.nodeSelector }}
135         nodeSelector:
136 {{ toYaml .Values.nodeSelector | indent 10 }}
137         {{- end -}}
138         {{- if .Values.affinity }}
139         affinity:
140 {{ toYaml .Values.affinity | indent 10 }}
141         {{- end }}
142
143         # side car containers
144       {{ include "common.log.sidecar" . | nindent 8 }}
145       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
146       volumes:
147         - name: {{ include "common.fullname" . }}-etsicatalog
148         {{- if .Values.persistence.enabled }}
149           persistentVolumeClaim:
150             claimName: {{ include "common.fullname" . }}
151         {{- else }}
152           emptyDir: {}
153         {{- end }}
154         - name: {{ include "common.fullname" . }}-localtime
155           hostPath:
156             path: /etc/localtime
157         - name:  {{ include "common.fullname" . }}-logs
158           emptyDir: {}
159         - name: {{ include "common.fullname" . }}-logconfig
160           configMap:
161             name : {{ include "common.fullname" . }}-logging-configmap
162
163         {{ include "common.log.volumes" . | nindent 8 }}
164       imagePullSecrets:
165       - name: "{{ include "common.namespace" . }}-docker-registry-key"