Merge "Add Common Helm Chart "mariadb-galera""
[oom.git] / kubernetes / portal / charts / portal-app / 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       - name: {{ include "common.name" . }}-job-completion
35         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
36         imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
37         command:
38         - /root/job_complete.py
39         args:
40         - --job-name
41         - {{ .Release.Name }}-portal-db-config
42         env:
43         - name: NAMESPACE
44           valueFrom:
45             fieldRef:
46               apiVersion: v1
47               fieldPath: metadata.namespace
48       containers:
49       - name: {{ include "common.name" . }}
50         image: "{{ .Values.global.repository | default .Values.repository }}/{{ .Values.image }}"
51         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52         command:
53           - /start-apache-tomcat.sh
54           - -i
55           - ""
56           - -n
57           - ""
58         ports:
59         - containerPort: {{ .Values.service.internalPort }}
60         - containerPort: {{ .Values.service.internalPort2 }}
61         - containerPort: {{ .Values.service.internalPort3 }}
62         {{- if eq .Values.liveness.enabled true }}
63         livenessProbe:
64           tcpSocket:
65             port: {{ .Values.service.internalPort }}
66           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
67           periodSeconds: {{ .Values.liveness.periodSeconds }}
68         {{ end -}}
69         readinessProbe:
70           tcpSocket:
71             port: {{ .Values.service.internalPort }}
72           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
73           periodSeconds: {{ .Values.readiness.periodSeconds }}
74         volumeMounts:
75         - mountPath: /etc/localtime
76           name: localtime
77           readOnly: true
78         - name: properties-onapportal
79           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTAL/WEB-INF/fusion/conf/fusion.properties"
80           subPath: fusion.properties
81         - name: properties-onapportal
82           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTAL/WEB-INF/classes/openid-connect.properties"
83           subPath: openid-connect.properties
84         - name: properties-onapportal
85           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTAL/WEB-INF/conf/system.properties"
86           subPath: system.properties
87         - name: properties-onapportal
88           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTAL/WEB-INF/classes/portal.properties"
89           subPath: portal.properties
90         - name: properties-onapportal
91           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTAL/WEB-INF/classes/music.properties"
92           subPath: music.properties
93         - name: properties-onapportal
94           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTAL/WEB-INF/classes/logback.xml"
95           subPath: logback.xml
96         - name: portal-tomcat-logs
97           mountPath: "{{ .Values.global.env.tomcatDir }}/logs"
98         - name: var-log-onap
99           mountPath: /var/log/onap
100         resources:
101 {{ toYaml .Values.resources | indent 12 }}
102       {{- if .Values.nodeSelector }}
103       nodeSelector:
104 {{ toYaml .Values.nodeSelector | indent 10 }}
105       {{- end -}}
106       {{- if .Values.affinity }}
107       affinity:
108 {{ toYaml .Values.affinity | indent 10 }}
109       {{- end }}
110       - name: filebeat-onap
111         image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
112         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
113         volumeMounts:
114         - mountPath: /usr/share/filebeat/filebeat.yml
115           name: filebeat-conf
116           subPath: filebeat.yml
117         - name: portal-data-filebeat
118           mountPath: /usr/share/filebeat/data
119         - name: var-log-onap
120           mountPath: /var/log/onap
121       volumes:
122         - name: localtime
123           hostPath:
124             path: /etc/localtime
125         - name: properties-onapportal
126           configMap:
127             name: {{ include "common.fullname" . }}-onapportal
128             defaultMode: 0755
129         - name: filebeat-conf
130           configMap:
131             name: portal-filebeat
132         - name: var-log-onap
133           emptyDir: {}
134         - name: portal-data-filebeat
135           emptyDir: {}
136         - name: portal-tomcat-logs
137           emptyDir: {}
138       imagePullSecrets:
139       - name: "{{ include "common.namespace" . }}-docker-registry-key"