Merge "Mavenized image creation for readiness-check"
[oom.git] / kubernetes / vid / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, 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
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
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 }}
25 spec:
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/job_complete.py
36         args:
37         - --job-name
38         - {{ include "common.fullname" . }}-galera-config
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           ports:
53           - containerPort: {{ .Values.service.internalPort }}
54           # disable liveness probe when breakpoints set in debugger
55           # so K8s doesn't restart unresponsive container
56           {{- if eq .Values.liveness.enabled true }}
57           livenessProbe:
58             tcpSocket:
59               port: {{ .Values.service.internalPort }}
60             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
61             periodSeconds: {{ .Values.liveness.periodSeconds }}
62           {{ end -}}
63           readinessProbe:
64             tcpSocket:
65               port: {{ .Values.service.internalPort }}
66             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
67             periodSeconds: {{ .Values.readiness.periodSeconds }}
68           env:
69             - name: ASDC_CLIENT_REST_HOST
70               value: sdc-be.{{ include "common.namespace" . }}
71             - name: ASDC_CLIENT_REST_AUTH
72               value: "{{ .Values.config.asdcclientrestauth }}"
73             - name: ASDC_CLIENT_REST_PORT
74               value: "{{ .Values.config.asdcclientrestport }}"
75             - name: ASDC_CLIENT_REST_PROTOCOL
76               value: "https"
77             - name: VID_AAI_URL
78               value: https://aai.{{ include "common.namespace" . }}:{{ .Values.config.vidaaiport }}
79             - name: VID_ECOMP_SHARED_CONTEXT_REST_URL
80               value: http://portal-app.{{ include "common.namespace" . }}:{{ .Values.config.onapport }}/ONAPPORTAL/context
81             - name: VID_MSO_SERVER_URL
82               value: http://so.{{ include "common.namespace" . }}:{{ .Values.config.msoport }}/onap/so/infra
83             - name: VID_MSO_PASS
84               value: "{{ .Values.config.vidmsopass }}"
85             - name: MSO_DME2_SERVER_URL
86               value: "{{ .Values.config.msodme2serverurl }}"
87             - name: MSO_DME2_ENABLED
88               value: {{ .Values.global.debugEnabled | default .Values.debugEnabled | quote }}
89             - name: VID_ECOMP_REDIRECT_URL
90               value: https://{{ .Values.config.portalhost }}:{{ .Values.config.onapport }}/ONAPPORTAL/login.htm
91             - name: VID_ECOMP_REST_URL
92               value: https://portal-app:{{ .Values.config.onapportrest }}/ONAPPORTAL/auxapi
93             - name: VID_ROLE_ACCESS_CENTRALIZED
94               value: "{{ .Values.config.roleaccesscentralized }}"
95             - name: VID_CONTACT_US_LINK
96               value: "{{ .Values.config.vidcontactuslink }}"
97             - name: VID_KEYSTORE_PASSWORD
98               value: {{ .Values.config.vidkeystorepassword | quote }}
99             - name: CATALINA_OPTS
100               value: "-Dvid.keystore.password=$(VID_KEYSTORE_PASSWORD) -Dvid.keyalias=vid@vid.onap.org -Dvid.keystore.filename=/opt/app/vid/etc/org.onap.vid.jks -Dcom.att.eelf.logging.file=logback.xml -Dcom.att.eelf.logging.path=/tmp"
101             - name: VID_UEB_URL_LIST
102               value: message-router.{{ include "common.namespace" . }}
103             - name: VID_MYSQL_HOST
104               value: {{ index .Values "mariadb-galera" "service" "name" }}
105             - name: VID_MYSQL_PORT
106               value: "{{ index .Values "mariadb-galera" "service" "internalPort" }}"
107             - name: VID_MYSQL_DBNAME
108               value: {{ index .Values "mariadb-galera" "config" "mysqlDatabase" }}
109             - name: VID_MYSQL_USER
110               value: {{ index .Values "mariadb-galera" "config" "userName" }}
111             - name: VID_MYSQL_PASS
112               valueFrom:
113                 secretKeyRef:
114                   name: {{ template "common.fullname" . }}-db
115                   key: db-user-password
116               #valueFrom:
117               #  secretKeyRef: {name: {{ include "common.fullname" . }}, key: vid-password}
118             - name: VID_MYSQL_MAXCONNECTIONS
119               value: "{{ .Values.config.vidmysqlmaxconnections }}"
120           volumeMounts:
121           - mountPath: /opt/app/vid/etc
122             name: vid-certs
123           - mountPath: /etc/localtime
124             name: localtime
125             readOnly: true
126           - mountPath: /var/log/onap
127             name: vid-logs
128           - mountPath: /tmp/logback.xml
129             name: vid-logback
130             subPath: logback.xml
131           resources:
132 {{ include "common.resources" . | indent 12 }}
133         {{- if .Values.nodeSelector }}
134         nodeSelector:
135 {{ toYaml .Values.nodeSelector | indent 10 }}
136         {{- end -}}
137         {{- if .Values.affinity }}
138         affinity:
139 {{ toYaml .Values.affinity | indent 10 }}
140         {{- end }}
141       # side car containers
142         - name: filebeat-onap
143           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
144           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
145           volumeMounts:
146           - mountPath: /usr/share/filebeat/filebeat.yml
147             name: filebeat-conf
148             subPath: filebeat.yml
149           - mountPath: /var/log/onap
150             name: vid-logs
151           - mountPath: /usr/share/filebeat/data
152             name: vid-data-filebeat
153       volumes:
154         - name: vid-certs
155           secret:
156             secretName: {{ include "common.fullname" . }}-certs
157         - name: localtime
158           hostPath:
159             path: /etc/localtime
160         - name: filebeat-conf
161           configMap:
162             name: {{ include "common.fullname" . }}-filebeat-configmap
163         - name: vid-logs
164           emptyDir: {}
165         - name: vid-data-filebeat
166           emptyDir: {}
167         - name: vid-logback
168           configMap:
169             name: {{ include "common.fullname" . }}-log-configmap
170       imagePullSecrets:
171       - name: "{{ include "common.namespace" . }}-docker-registry-key"