Merge "Ensure sdnctl user/schema created on master MySQL"
[oom.git] / kubernetes / portal / charts / portal-sdk / 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" . }}-readiness
35         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
36         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
37         command:
38         - /root/ready.py
39         args:
40         - --container-name
41         - {{ .Values.mariadb.chart.name }}
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         ports:
55         - containerPort: {{ .Values.service.internalPort }}
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         volumeMounts:
69         - mountPath: /etc/localtime
70           name: localtime
71           readOnly: true
72         - name: properties-onapportalsdk
73           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/fusion/conf/fusion.properties"
74           subPath: fusion.properties
75         - name: properties-onapportalsdk
76           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/conf/system.properties"
77           subPath: system.properties
78         - name: properties-onapportalsdk
79           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/classes/portal.properties"
80           subPath: portal.properties
81         - name: properties-onapportalsdk
82           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/classes/music.properties"
83           subPath: music.properties
84         - name: properties-onapportalsdk
85           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/classes/logback.xml"
86           subPath: logback.xml
87         - name: portal-tomcat-logs
88           mountPath: "{{ .Values.global.env.tomcatDir }}/logs"
89         - name: var-log-onap
90           mountPath: /var/log/onap
91         resources:
92 {{ toYaml .Values.resources | indent 12 }}
93       {{- if .Values.nodeSelector }}
94       nodeSelector:
95 {{ toYaml .Values.nodeSelector | indent 10 }}
96       {{- end -}}
97       {{- if .Values.affinity }}
98       affinity:
99 {{ toYaml .Values.affinity | indent 10 }}
100       {{- end }}
101       - name: filebeat-onap
102         image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
103         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
104         volumeMounts:
105         - mountPath: /usr/share/filebeat/filebeat.yml
106           name: filebeat-conf
107           subPath: filebeat.yml
108         - name: portal-data-filebeat
109           mountPath: /usr/share/filebeat/data
110         - name: var-log-onap
111           mountPath: /var/log/onap
112       volumes:
113         - name: localtime
114           hostPath:
115             path: /etc/localtime
116         - name: properties-onapportalsdk
117           configMap:
118             name: {{ include "common.fullname" . }}-onapportalsdk
119             defaultMode: 0755
120         - name: filebeat-conf
121           configMap:
122             name: portal-filebeat
123         - name: var-log-onap
124           emptyDir: {}
125         - name: portal-data-filebeat
126           emptyDir: {}
127         - name: portal-tomcat-logs
128           emptyDir: {}
129       imagePullSecrets:
130       - name: "{{ include "common.namespace" . }}-docker-registry-key"