Merge "update log helm chart from 2 to 3.0.0"
[oom.git] / kubernetes / portal / charts / portal-sdk / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ .Release.Name }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ .Release.Name }}
33     spec:
34       initContainers:
35       - name: {{ include "common.name" . }}-readiness
36         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
37         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
38         command:
39         - /root/ready.py
40         args:
41         - --container-name
42         - "portal-db"
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49       containers:
50       - name: {{ include "common.name" . }}
51         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         command:
54           - /start-apache-tomcat.sh
55         ports:
56         - containerPort: {{ .Values.service.internalPort }}
57         {{- if eq .Values.liveness.enabled true }}
58         livenessProbe:
59           tcpSocket:
60             port: {{ .Values.service.internalPort }}
61           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62           periodSeconds: {{ .Values.liveness.periodSeconds }}
63         {{ end -}}
64         readinessProbe:
65           tcpSocket:
66             port: {{ .Values.service.internalPort }}
67           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68           periodSeconds: {{ .Values.readiness.periodSeconds }}
69         volumeMounts:
70         - mountPath: /etc/localtime
71           name: localtime
72           readOnly: true
73         - name: properties-onapportalsdk
74           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/fusion/conf/fusion.properties"
75           subPath: fusion.properties
76         - name: properties-onapportalsdk
77           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/conf/system.properties"
78           subPath: system.properties
79         - name: properties-onapportalsdk
80           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/classes/portal.properties"
81           subPath: portal.properties
82         - name: properties-onapportalsdk
83           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/classes/music.properties"
84           subPath: music.properties
85         - name: properties-onapportalsdk
86           mountPath: "{{ .Values.global.env.tomcatDir }}/webapps/ONAPPORTALSDK/WEB-INF/classes/logback.xml"
87           subPath: logback.xml
88         - name: portal-tomcat-logs
89           mountPath: "{{ .Values.global.env.tomcatDir }}/logs"
90         - name: var-log-onap
91           mountPath: /var/log/onap
92         resources:
93 {{ toYaml .Values.resources | indent 12 }}
94       {{- if .Values.nodeSelector }}
95       nodeSelector:
96 {{ toYaml .Values.nodeSelector | indent 10 }}
97       {{- end -}}
98       {{- if .Values.affinity }}
99       affinity:
100 {{ toYaml .Values.affinity | indent 10 }}
101       {{- end }}
102       - name: filebeat-onap
103         image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
104         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
105         volumeMounts:
106         - mountPath: /usr/share/filebeat/filebeat.yml
107           name: filebeat-conf
108           subPath: filebeat.yml
109         - name: portal-data-filebeat
110           mountPath: /usr/share/filebeat/data
111         - name: var-log-onap
112           mountPath: /var/log/onap
113       volumes:
114         - name: localtime
115           hostPath:
116             path: /etc/localtime
117         - name: properties-onapportalsdk
118           configMap:
119             name: {{ include "common.fullname" . }}-onapportalsdk
120             defaultMode: 0755
121         - name: filebeat-conf
122           configMap:
123             name: portal-filebeat
124         - name: var-log-onap
125           emptyDir: {}
126         - name: portal-data-filebeat
127           emptyDir: {}
128         - name: portal-tomcat-logs
129           emptyDir: {}
130       imagePullSecrets:
131       - name: "{{ include "common.namespace" . }}-docker-registry-key"