[AAI] Make AAI helm3 compatible
[oom.git] / kubernetes / aai / components / aai-modelloader / templates / deployment.yaml
1 {{/*
2 # Copyright © 2018 Amdocs, AT&T
3 # Modifications Copyright © 2018 Bell Canada
4 # Modifications Copyright © 2020 Orange
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 */}}
18
19 apiVersion: apps/v1
20 kind: Deployment
21 metadata:
22   name: {{ include "common.fullname" . }}
23   namespace: {{ include "common.namespace" . }}
24   labels:
25     app: {{ include "common.name" . }}
26     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
27     release: {{ include "common.release" . }}
28     heritage: {{ .Release.Service }}
29 spec:
30   replicas: {{ .Values.replicaCount }}
31   selector:
32     matchLabels:
33       app: {{ include "common.name" . }}
34   template:
35     metadata:
36       labels:
37         app: {{ include "common.name" . }}
38         release: {{ include "common.release" . }}
39       name: {{ include "common.name" . }}
40     spec:
41       {{- if .Values.nodeSelector }}
42       nodeSelector:
43 {{ toYaml .Values.nodeSelector | indent 8 }}
44       {{- end -}}
45       {{- if .Values.affinity }}
46       affinity:
47 {{ toYaml .Values.affinity | indent 8 }}
48       {{- end }}
49       containers:
50       - name: {{ include "common.name" . }}
51         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         env:
54         - name: CONFIG_HOME
55           value: /opt/app/model-loader/config/
56         volumeMounts:
57         - mountPath: /etc/localtime
58           name: localtime
59           readOnly: true
60         - mountPath: /opt/app/model-loader/config/model-loader.properties
61           subPath: model-loader.properties
62           name: {{ include "common.fullname" . }}-prop-config
63         - mountPath: /opt/app/model-loader/config/auth/
64           name: {{ include "common.fullname" . }}-auth-config
65         - mountPath: /var/log/onap
66           name: {{ include "common.fullname" . }}-logs
67         - mountPath: /opt/app/model-loader/logback.xml
68           name: {{ include "common.fullname" . }}-log-conf
69           subPath: logback.xml
70         ports:
71         - containerPort: {{ .Values.service.internalPort }}
72         - containerPort: {{ .Values.service.internalPort2 }}
73         resources:
74 {{ include "common.resources" . }}
75
76       # side car containers
77       - name: filebeat-onap
78         image: {{ include "repositoryGenerator.image.logging" . }}
79         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
80         volumeMounts:
81         - mountPath: /usr/share/filebeat/filebeat.yml
82           subPath: filebeat.yml
83           name: filebeat-conf
84         - mountPath: /var/log/onap
85           name: {{ include "common.fullname" . }}-logs
86         - mountPath: /usr/share/filebeat/data
87           name: aai-filebeat
88         resources:
89 {{ include "common.resources" . }}
90       volumes:
91       - name: localtime
92         hostPath:
93           path: /etc/localtime
94       - name: {{ include "common.fullname" . }}-prop-config
95         configMap:
96           name: {{ include "common.fullname" . }}-prop
97       - name: {{ include "common.fullname" . }}-auth-config
98         secret:
99           secretName: {{ include "common.fullname" . }}
100       - name: filebeat-conf
101         configMap:
102           name: aai-filebeat
103       - name: {{ include "common.fullname" . }}-logs
104         emptyDir: {}
105       - name: aai-filebeat
106         emptyDir: {}
107       - name: {{ include "common.fullname" . }}-log-conf
108         configMap:
109           name: {{ include "common.fullname" . }}-log
110       restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
111       imagePullSecrets:
112       - name: "{{ include "common.namespace" . }}-docker-registry-key"