d9cbbef15b83bbda6f3c543f77c2faebc06c2435
[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       {{ include "common.readinessCheck.waitFor" (dict "dot" . "wait_for" .Values.readinessCheck.wait_for.msb ) | indent 6 | trim }}
56       - command:
57         - /bin/sh
58         - -c
59         - chown -R 1000:1000 /service/modeling/etsicatalog/static
60         image: {{ include "repositoryGenerator.image.busybox" . }}
61         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
62         name: {{ include "common.name" . }}-init
63         volumeMounts:
64         - name: {{ include "common.fullname" . }}-etsicatalog
65           mountPath: /service/modeling/etsicatalog/static
66       containers:
67         - name: {{ include "common.name" . }}
68           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
69           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
70           ports:
71           - containerPort: {{ .Values.service.internalPort }}
72           # disable liveness probe when breakpoints set in debugger
73           # so K8s doesn't restart unresponsive container
74           {{ if .Values.liveness.enabled }}
75           livenessProbe:
76             tcpSocket:
77               port: {{ .Values.service.internalPort }}
78             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
79             periodSeconds: {{ .Values.liveness.periodSeconds }}
80           {{ end }}
81           readinessProbe:
82             tcpSocket:
83               port: {{ .Values.service.internalPort }}
84             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
85             periodSeconds: {{ .Values.readiness.periodSeconds }}
86           env:
87           - name: SSL_ENABLED
88             value: "{{ .Values.config.ssl_enabled }}"
89           - name: MSB_ENABLED
90             value: "{{ .Values.config.msb_enabled }}"
91           - name: MSB_ADDR
92             value: "{{ .Values.config.msbProtocol }}://{{ .Values.config.msbServiceName }}:{{ .Values.config.msbPort }}"
93           - name: SDC_ADDR
94             value: "{{ .Values.config.sdcProtocol }}://{{ .Values.config.sdcServiceName }}:{{ .Values.config.sdcPort }}"
95           - name: DMAAP_ENABLED
96             value: "{{ .Values.config.dmaap_enabled }}"
97           - name: DMAAP_ADDR
98             value: "{{ .Values.config.dmaapProtocol }}://{{ .Values.config.dmaapServiceName }}:{{ .Values.config.dmaapPort }}"
99           - name: DB_IP
100             value: "{{ include "common.mariadbService" . }}"
101           - name: DB_PORT
102             value: "{{ include "common.mariadbPort" . }}"
103           - name: DB_USER
104             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "modeling-db-secret" "key" "login") | indent 12 }}
105           - name: DB_PASSWD
106             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "modeling-db-secret" "key" "password") | indent 12 }}
107           volumeMounts:
108           - name: {{ include "common.fullname" . }}-etsicatalog
109             mountPath: /service/modeling/etsicatalog/static
110           - name: {{ include "common.fullname" . }}-localtime
111             mountPath: /etc/localtime
112             readOnly: true
113           - name: {{ include "common.fullname" . }}-logs
114             mountPath: {{ .Values.log.path }}
115           - name: {{ include "common.fullname" . }}-logconfig
116             mountPath: /opt/modeling/etsicatalog/config/log.yml
117             subPath: log.yml
118           resources:
119 {{ include "common.resources" . | indent 12 }}
120         {{- if .Values.nodeSelector }}
121         nodeSelector:
122 {{ toYaml .Values.nodeSelector | indent 10 }}
123         {{- end -}}
124         {{- if .Values.affinity }}
125         affinity:
126 {{ toYaml .Values.affinity | indent 10 }}
127         {{- end }}
128
129         # side car containers
130       {{ include "common.log.sidecar" . | nindent 8 }}
131       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
132       volumes:
133         - name: {{ include "common.fullname" . }}-etsicatalog
134         {{- if .Values.persistence.enabled }}
135           persistentVolumeClaim:
136             claimName: {{ include "common.fullname" . }}
137         {{- else }}
138           emptyDir: {}
139         {{- end }}
140         - name: {{ include "common.fullname" . }}-localtime
141           hostPath:
142             path: /etc/localtime
143         - name:  {{ include "common.fullname" . }}-logs
144           emptyDir: {}
145         - name: {{ include "common.fullname" . }}-logconfig
146           configMap:
147             name : {{ include "common.fullname" . }}-logging-configmap
148
149         {{ include "common.log.volumes" . | nindent 8 }}
150       imagePullSecrets:
151       - name: "{{ include "common.namespace" . }}-docker-registry-key"