[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / clamp / components / clamp-backend / templates / deployment.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018 AT&T
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: apps/v1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   replicas: {{ .Values.replicaCount }}
30   selector:
31     matchLabels:
32       app: {{ include "common.name" . }}
33   template:
34     metadata:
35       labels:
36         app: {{ include "common.name" . }}
37         release: {{ include "common.release" . }}
38     spec:
39       initContainers:
40       - command:
41         - /app/ready.py
42         args:
43         - --container-name
44         - clamp-mariadb
45         env:
46         - name: NAMESPACE
47           valueFrom:
48             fieldRef:
49               apiVersion: v1
50               fieldPath: metadata.namespace
51         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: {{ include "common.name" . }}-readiness
54 {{ include "common.certInitializer.initContainer" . | indent 6 }}
55       containers:
56         # side car containers
57         {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.sidecar" . | nindent 8 }}{{ end }}
58         # main container
59         - name: {{ include "common.name" . }}
60           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
61           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
62           command:
63           - sh
64           workingDir: "/opt/clamp/"
65           args:
66           - -c
67           - |
68           {{- if .Values.global.aafEnabled }}
69             export $(grep '^cadi_' {{ .Values.certInitializer.credsPath }}/org.onap.clamp.cred.props | xargs -0)
70           {{- end }}
71             java -Djava.security.egd=file:/dev/./urandom ${JAVA_RAM_CONFIGURATION} -jar ./app.jar
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 eq .Values.liveness.enabled true }}
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           volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
89           - name: logs
90             mountPath: {{ .Values.log.path }}
91           - mountPath: /opt/clamp/sdc-controllers-config.json
92             name: {{ include "common.fullname" . }}-config
93             subPath: sdc-controllers-config.json
94           - mountPath: /opt/clamp/application.properties
95             name: {{ include "common.fullname" . }}-config
96             subPath: application.properties
97           env:
98           - name: MYSQL_USER
99             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 12 }}
100           - name: MYSQL_PASSWORD
101             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 12 }}
102           - name: MYSQL_DATABASE
103             value: {{ tpl .Values.db.databaseName .}}
104           {{-  if ne "unlimited" (include "common.flavor" .) }}
105           - name: JAVA_RAM_CONFIGURATION
106             value: -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=75
107           {{-  end }}
108           resources: {{ include "common.resources" . | nindent 12 }}
109         {{- if .Values.nodeSelector }}
110         nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
111         {{- end -}}
112         {{- if .Values.affinity }}
113         affinity: {{ toYaml .Values.affinity | nindent 10 }}
114         {{- end }}
115       volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
116         - name: {{ include "common.fullname" . }}-config
117           configMap:
118             name: {{ include "common.fullname" . }}
119             items:
120             - key: sdc-controllers-config.json
121               path: sdc-controllers-config.json
122             - key: application.properties
123               path: application.properties
124         - name:  logs
125           emptyDir: {}
126         {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.volumes" . | nindent 8 }}{{ end }}
127       imagePullSecrets:
128       - name: "{{ include "common.namespace" . }}-docker-registry-key"