blob: 84a8cc208bfb504814c9b7720500c525c49c32db [file] [log] [blame]
kj41ef22e2018-04-02 13:34:07 +03001{{/*
2# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00003# Modifications Copyright © 2018 AT&T
kj41ef22e2018-04-02 13:34:07 +03004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16*/}}
17
18apiVersion: extensions/v1beta1
19kind: Deployment
20metadata:
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26 release: {{ .Release.Name }}
27 heritage: {{ .Release.Service }}
28spec:
29 replicas: {{ .Values.replicaCount }}
30 selector:
31 matchLabels:
32 app: {{ include "common.name" . }}
33 template:
34 metadata:
35 labels:
36 app: {{ include "common.name" . }}
37 release: {{ .Release.Name }}
38 name: {{ include "common.name" . }}
39 spec:
40 containers:
41 - env:
42 - name: MSB_ADDR
43 value: {{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}
44 - name: MSB_PORT
45 value: "{{ .Values.config.msbPort }}"
46 - name: AAI_ADDR
47 value: "aai.{{ include "common.namespace" . }}"
48 - name: AAI_PORT
49 value: "{{ .Values.config.aai.port }}"
50 - name: AAI_SCHEMA_VERSION
51 value: "{{ .Values.config.aai.schemaVersion }}"
52 - name: AAI_USERNAME
53 value: "{{ .Values.config.aai.username }}"
54 - name: AAI_PASSWORD
55 value: "{{ .Values.config.aai.password }}"
BorislavGdf11cd52018-05-06 12:55:20 +000056 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
kj41ef22e2018-04-02 13:34:07 +030057 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58 name: {{ include "common.name" . }}
59 volumeMounts:
60 - mountPath: /var/log/onap
61 name: framework-log
62 - mountPath: /opt/multivimbroker/multivimbroker/pub/config/log.yml
63 name: framework-logconfig
64 subPath: log.yml
Mandeep Khindaa91aaa22018-05-01 20:52:44 +000065 - mountPath: /opt/multivimbroker/multivimbroker/pub/config/provider-plugin.json
66 name: provider-plugin
67 subPath: provider-plugin.json
kj41ef22e2018-04-02 13:34:07 +030068 ports:
69 - containerPort: {{ .Values.service.internalPort }}
70 # disable liveness probe when breakpoints set in debugger
71 # so K8s doesn't restart unresponsive container
72 {{- if eq .Values.liveness.enabled true }}
73 livenessProbe:
74 httpGet:
75 path: /api/multicloud/v0/swagger.json
76 port: {{ .Values.service.internalPort }}
77 scheme: HTTP
78 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
79 periodSeconds: {{ .Values.liveness.periodSeconds }}
80 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
81 successThreshold: {{ .Values.liveness.successThreshold }}
82 failureThreshold: {{ .Values.liveness.failureThreshold }}
83 {{ end -}}
84
85 # side car containers
86 - image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
87 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
88 name: filebeat-onap
89 volumeMounts:
90 - mountPath: /usr/share/filebeat/filebeat.yml
91 name: filebeat-conf
92 subPath: filebeat.yml
93 - mountPath: /var/log/onap
94 name: framework-log
95 - mountPath: /usr/share/filebeat/data
96 name: framework-data-filebeat
97 resources:
98{{ toYaml .Values.resources | indent 12 }}
99 {{- if .Values.nodeSelector }}
100 nodeSelector:
101{{ toYaml .Values.nodeSelector | indent 10 }}
102 {{- end -}}
103 {{- if .Values.affinity }}
104 affinity:
105{{ toYaml .Values.affinity | indent 10 }}
106 {{- end }}
107
108 volumes:
109 - name: framework-log
110 emptyDir: {}
Mandeep Khindaa91aaa22018-05-01 20:52:44 +0000111 - name: provider-plugin
112 configMap:
113 name: {{ include "common.fullname" . }}-provider-plugin-configmap
kj41ef22e2018-04-02 13:34:07 +0300114 - name: framework-data-filebeat
115 emptyDir: {}
116 - name: filebeat-conf
117 configMap:
118 name: multicloud-filebeat-configmap
119 - name: framework-logconfig
120 configMap:
121 name: {{ include "common.fullname" . }}-log-configmap
122 imagePullSecrets:
123 - name: "{{ include "common.namespace" . }}-docker-registry-key"
124 restartPolicy: Always