blob: 53716e5f44e6b80c1611ccfe77df7204e5920fae [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
kwasield74d38f2020-07-23 10:09:57 +000018apiVersion: apps/v1
kj41ef22e2018-04-02 13:34:07 +030019kind: 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 "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
kj41ef22e2018-04-02 13:34:07 +030027 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" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010037 release: {{ include "common.release" . }}
kj41ef22e2018-04-02 13:34:07 +030038 name: {{ include "common.name" . }}
39 spec:
40 containers:
41 - env:
Bin Yang2e5ecc32020-01-23 02:46:07 +000042 - name: MSB_PROTO
Bin Yang6ea79cb2020-02-05 22:31:12 +080043 value: {{ .Values.config.msbprotocol }}
kj41ef22e2018-04-02 13:34:07 +030044 - name: MSB_ADDR
45 value: {{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}
46 - name: MSB_PORT
47 value: "{{ .Values.config.msbPort }}"
48 - name: AAI_ADDR
49 value: "aai.{{ include "common.namespace" . }}"
50 - name: AAI_PORT
51 value: "{{ .Values.config.aai.port }}"
52 - name: AAI_SCHEMA_VERSION
53 value: "{{ .Values.config.aai.schemaVersion }}"
54 - name: AAI_USERNAME
55 value: "{{ .Values.config.aai.username }}"
56 - name: AAI_PASSWORD
57 value: "{{ .Values.config.aai.password }}"
Bin Yang2e5ecc32020-01-23 02:46:07 +000058 - name: SSL_ENABLED
59 value: "{{ .Values.config.ssl_enabled }}"
Mukul62927a12018-09-11 11:42:00 +000060 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000061{{ include "common.resources" . | indent 12 }}
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010062 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
kj41ef22e2018-04-02 13:34:07 +030063 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
64 name: {{ include "common.name" . }}
65 volumeMounts:
Maciej Wereski989c91c2021-11-17 16:45:14 +010066 - mountPath: "{{ .Values.log.path }}"
kj41ef22e2018-04-02 13:34:07 +030067 name: framework-log
68 - mountPath: /opt/multivimbroker/multivimbroker/pub/config/log.yml
69 name: framework-logconfig
70 subPath: log.yml
Mandeep Khindaa91aaa22018-05-01 20:52:44 +000071 - mountPath: /opt/multivimbroker/multivimbroker/pub/config/provider-plugin.json
72 name: provider-plugin
73 subPath: provider-plugin.json
kj41ef22e2018-04-02 13:34:07 +030074 ports:
75 - containerPort: {{ .Values.service.internalPort }}
76 # disable liveness probe when breakpoints set in debugger
77 # so K8s doesn't restart unresponsive container
78 {{- if eq .Values.liveness.enabled true }}
79 livenessProbe:
80 httpGet:
81 path: /api/multicloud/v0/swagger.json
82 port: {{ .Values.service.internalPort }}
Bin Yang2e5ecc32020-01-23 02:46:07 +000083 scheme: HTTPS
kj41ef22e2018-04-02 13:34:07 +030084 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
85 periodSeconds: {{ .Values.liveness.periodSeconds }}
86 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
87 successThreshold: {{ .Values.liveness.successThreshold }}
88 failureThreshold: {{ .Values.liveness.failureThreshold }}
89 {{ end -}}
90
91 # side car containers
Maciej Wereski989c91c2021-11-17 16:45:14 +010092 {{ include "common.log.sidecar" . | nindent 5 }}
farida azmy72513552021-10-12 18:55:21 +020093 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
kj41ef22e2018-04-02 13:34:07 +030094 volumes:
95 - name: framework-log
96 emptyDir: {}
Mandeep Khindaa91aaa22018-05-01 20:52:44 +000097 - name: provider-plugin
98 configMap:
99 name: {{ include "common.fullname" . }}-provider-plugin-configmap
Maciej Wereski989c91c2021-11-17 16:45:14 +0100100 {{ include "common.log.volumes" . | nindent 5 }}
kj41ef22e2018-04-02 13:34:07 +0300101 - name: framework-logconfig
102 configMap:
103 name: {{ include "common.fullname" . }}-log-configmap
104 imagePullSecrets:
105 - name: "{{ include "common.namespace" . }}-docker-registry-key"
106 restartPolicy: Always