Merge "License Addition task UUI , VNFSDK , MSB , NBI"
[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
63       # side car containers
64       - name: filebeat-onap
65         image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
66         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
67         volumeMounts:
68         - mountPath: /usr/share/filebeat/filebeat.yml
69           subPath: filebeat.yml
70           name: filebeat-conf
71         - mountPath: /var/log/onap
72           name: {{ include "common.fullname" . }}-logs
73         - mountPath: /usr/share/filebeat/data
74           name: aai-filebeat
75       volumes:
76       - name: localtime
77         hostPath:
78           path: /etc/localtime
79       - name: {{ include "common.fullname" . }}-prop-config
80         configMap:
81           name: {{ include "common.fullname" . }}-prop
82       - name: {{ include "common.fullname" . }}-auth-config
83         secret:
84           secretName: {{ include "common.fullname" . }}
85       - name: filebeat-conf
86         configMap:
87           name: aai-filebeat
88       - name: {{ include "common.fullname" . }}-logs
89         emptyDir: {}
90       - name: aai-filebeat
91         emptyDir: {}
92       - name: {{ include "common.fullname" . }}-log-conf
93         configMap:
94          name: {{ include "common.fullname" . }}-log
95       restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
96       imagePullSecrets:
97       - name: "{{ include "common.namespace" . }}-docker-registry-key"