Bump up version to 1.3.0-SNAPSHOT
[oom.git] / kubernetes / aai / charts / aai-modelloader / templates / deployment.yaml
1 # Copyright © 2018 Amdocs, AT&T
2 # Modifications Copyright © 2018 Bell Canada
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   selector:
29     matchLabels:
30       app: {{ include "common.name" . }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ .Release.Name }}
36       name: {{ include "common.name" . }}
37     spec:
38       containers:
39       - name: {{ include "common.name" . }}
40         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
41         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
42         env:
43         - name: CONFIG_HOME
44           value: /opt/app/model-loader/config/
45         volumeMounts:
46         - mountPath: /etc/localtime
47           name: localtime
48           readOnly: true
49         - mountPath: /opt/app/model-loader/config/model-loader.properties
50           subPath: model-loader.properties
51           name: {{ include "common.fullname" . }}-prop-config
52         - mountPath: /opt/app/model-loader/config/auth/
53           name: {{ include "common.fullname" . }}-auth-config
54         - mountPath: /var/log/onap
55           name: {{ include "common.fullname" . }}-logs
56         - mountPath: /opt/app/model-loader/logback.xml
57           name: {{ include "common.fullname" . }}-log-conf
58           subPath: logback.xml
59         ports:
60         - containerPort: {{ .Values.service.internalPort }}
61         - containerPort: {{ .Values.service.internalPort2 }}
62         resources:
63 {{ include "common.resources" . | indent 12 }}
64
65       # side car containers
66       - name: filebeat-onap
67         image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
68         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
69         volumeMounts:
70         - mountPath: /usr/share/filebeat/filebeat.yml
71           subPath: filebeat.yml
72           name: filebeat-conf
73         - mountPath: /var/log/onap
74           name: {{ include "common.fullname" . }}-logs
75         - mountPath: /usr/share/filebeat/data
76           name: aai-filebeat
77       volumes:
78       - name: localtime
79         hostPath:
80           path: /etc/localtime
81       - name: {{ include "common.fullname" . }}-prop-config
82         configMap:
83           name: {{ include "common.fullname" . }}-prop
84       - name: {{ include "common.fullname" . }}-auth-config
85         secret:
86           secretName: {{ include "common.fullname" . }}
87       - name: filebeat-conf
88         configMap:
89           name: aai-filebeat
90       - name: {{ include "common.fullname" . }}-logs
91         emptyDir: {}
92       - name: aai-filebeat
93         emptyDir: {}
94       - name: {{ include "common.fullname" . }}-log-conf
95         configMap:
96          name: {{ include "common.fullname" . }}-log
97       restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
98       imagePullSecrets:
99       - name: "{{ include "common.namespace" . }}-docker-registry-key"