blob: 3a81168cafdc15db84c9b3eb5f86817dc102c7bc [file] [log] [blame]
mark.j.leonard827c8512018-05-04 17:09:48 +01001# Copyright © 2018 Amdocs, AT&T
toshrajbhardwaj84d73b12018-08-06 07:35:14 +00002# Modifications Copyright © 2018 Bell Canada
kj6a8ce802018-03-19 15:07:44 +02003#
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
16apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
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 }}
26spec:
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" . }}
BorislavG809b1d72018-05-06 12:55:20 +000040 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
kj6a8ce802018-03-19 15:07:44 +020041 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
mark.j.leonard827c8512018-05-04 17:09:48 +010054 - mountPath: /var/log/onap
kj6a8ce802018-03-19 15:07:44 +020055 name: {{ include "common.fullname" . }}-logs
Jimmy Forsythb95074b2018-05-01 16:03:43 -040056 - mountPath: /opt/app/model-loader/logback.xml
kj6a8ce802018-03-19 15:07:44 +020057 name: {{ include "common.fullname" . }}-log-conf
58 subPath: logback.xml
59 ports:
60 - containerPort: {{ .Values.service.internalPort }}
61 - containerPort: {{ .Values.service.internalPort2 }}
rajeshkalai47c1de32018-09-20 06:36:28 -040062 resources:
Mandeep Khinda47cf1152018-09-24 15:25:42 +000063{{ include "common.resources" . | indent 12 }}
kj6a8ce802018-03-19 15:07:44 +020064
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
mark.j.leonard827c8512018-05-04 17:09:48 +010073 - mountPath: /var/log/onap
kj6a8ce802018-03-19 15:07:44 +020074 name: {{ include "common.fullname" . }}-logs
75 - mountPath: /usr/share/filebeat/data
76 name: aai-filebeat
kj6a8ce802018-03-19 15:07:44 +020077 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"