blob: fe989b9d2919b6096ad13c07bccd07ca0cffea7c [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 }}
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
mark.j.leonard827c8512018-05-04 17:09:48 +010071 - mountPath: /var/log/onap
kj6a8ce802018-03-19 15:07:44 +020072 name: {{ include "common.fullname" . }}-logs
73 - mountPath: /usr/share/filebeat/data
74 name: aai-filebeat
kj6a8ce802018-03-19 15:07:44 +020075 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"