blob: 903963b34be10d97aba2ba9e50ad462c8db38186 [file] [log] [blame]
kj41ef22e2018-04-02 13:34:07 +03001{{/*
2# Copyright © 2017 Amdocs, 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
17apiVersion: extensions/v1beta1
18kind: Deployment
19metadata:
20 name: {{ include "common.fullname" . }}
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25 release: {{ .Release.Name }}
26 heritage: {{ .Release.Service }}
27spec:
28 replicas: {{ .Values.replicaCount }}
29 selector:
30 matchLabels:
31 app: multicloud-vio
32 template:
33 metadata:
34 labels:
35 app: {{ include "common.name" . }}
36 release: {{ .Release.Name }}
37 name: {{ include "common.name" . }}
38 spec:
39 containers:
40 - env:
41 - name: MSB_ADDR
42 value: "{{ .Values.config.msbgateway }}"
43 - name: MSB_PORT
44 value: "{{ .Values.config.msbPort }}.{{ include "common.namespace" . }}"
45 - name: AAI_ADDR
46 value: aai.{{ include "common.namespace" . }}
47 - name: AAI_PORT
48 value: "{{ .Values.config.aai.port }}"
49 - name: AAI_SCHEMA_VERSION
50 value: "{{ .Values.config.aai.schemaVersion }}"
51 - name: AAI_USERNAME
52 value: "{{ .Values.config.aai.username }}"
53 - name: AAI_PASSWORD
54 value: "{{ .Values.config.aai.password }}"
55 name: {{ include "common.name" . }}
56 volumeMounts:
57 - mountPath: /var/log/onap
58 name: vio-log
59 - mountPath: /opt/vio/vio/pub/config/log.yml
60 name: vio-logconfig
61 subPath: log.yml
62 image: "{{ .Values.global.repository | default .Values.repository }}/{{ .Values.image }}"
63 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
64 ports:
65 - containerPort: {{ .Values.service.internalPort }}
66 {{- if eq .Values.liveness.enabled true }}
67 livenessProbe:
68 httpGet:
69 path: /api/multicloud-vio/v0/swagger.json
70 port: {{ .Values.service.internalPort }}
71 scheme: HTTP
72 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
73 periodSeconds: {{ .Values.liveness.periodSeconds }}
74 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
75 successThreshold: {{ .Values.liveness.successThreshold }}
76 failureThreshold: {{ .Values.liveness.failureThreshold }}
77 {{ end -}}
78
79 # side car containers
80 - image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
81 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
82 name: filebeat-onap
83 volumeMounts:
84 - mountPath: /usr/share/filebeat/filebeat.yml
85 name: filebeat-conf
86 subPath: filebeat.yml
87 - mountPath: /var/log/onap
88 name: vio-log
89 - mountPath: /usr/share/filebeat/data
90 name: vio-data-filebeat
91 resources:
92{{ toYaml .Values.resources | indent 12 }}
93 {{- if .Values.nodeSelector }}
94 nodeSelector:
95{{ toYaml .Values.nodeSelector | indent 10 }}
96 {{- end -}}
97 {{- if .Values.affinity }}
98 affinity:
99{{ toYaml .Values.affinity | indent 10 }}
100 {{- end }}
101
102 volumes:
103 - name: vio-log
104 emptyDir: {}
105 - name: vio-data-filebeat
106 emptyDir: {}
107 - name: filebeat-conf
108 configMap:
109 name: multicloud-filebeat-configmap
110 - name: vio-logconfig
111 configMap:
112 name: {{ include "common.fullname" . }}-log-configmap
113 imagePullSecrets:
114 - name: "{{ include "common.namespace" . }}-docker-registry-key"
115 restartPolicy: Always