blob: d00d78b0049ff59f3fbd3d133d56bf8f51c240eb [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:
kwasield74d38f2020-07-23 10:09:57 +000032 app: {{ include "common.name" . }}
kj41ef22e2018-04-02 13:34:07 +030033 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" . }}
Huabing Zhao89577802018-07-30 09:41:17 +000039 annotations:
40 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
kj41ef22e2018-04-02 13:34:07 +030041 spec:
42 containers:
43 - env:
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020044 - name: MSB_PROTO
45 value: "{{ if (include "common.needTLS" .) }}https{{ else }}http{{ end }}"
kj41ef22e2018-04-02 13:34:07 +030046 - name: MSB_ADDR
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020047 value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}"
kj41ef22e2018-04-02 13:34:07 +030048 - name: MSB_PORT
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020049 value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.msbPort }}{{ else }}{{ .Values.config.msbPlainPort }}{{ end }}"
kj41ef22e2018-04-02 13:34:07 +030050 - name: AAI_ADDR
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020051 value: "aai.{{ include "common.namespace" . }}"
kj41ef22e2018-04-02 13:34:07 +030052 - name: AAI_PORT
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020053 value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.aai.aaiPort }}{{ else }}{{ .Values.config.aai.aaiPlainPort }}{{ end }}"
kj41ef22e2018-04-02 13:34:07 +030054 - name: AAI_SCHEMA_VERSION
55 value: "{{ .Values.config.aai.schemaVersion }}"
56 - name: AAI_USERNAME
57 value: "{{ .Values.config.aai.username }}"
58 - name: AAI_PASSWORD
59 value: "{{ .Values.config.aai.password }}"
60 name: {{ include "common.name" . }}
61 volumeMounts:
Maciej Wereski989c91c2021-11-17 16:45:14 +010062 - mountPath: "{{ .Values.log.path }}"
kj41ef22e2018-04-02 13:34:07 +030063 name: vio-log
64 - mountPath: /opt/vio/vio/pub/config/log.yml
65 name: vio-logconfig
66 subPath: log.yml
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010067 resources: {{ include "common.resources" . | nindent 9 }}
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010068 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
kj41ef22e2018-04-02 13:34:07 +030069 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
70 ports:
71 - containerPort: {{ .Values.service.internalPort }}
Huabing Zhao69eec442018-08-03 07:31:22 +000072 # disable liveness probe when breakpoints set in debugger
73 # so K8s doesn't restart unresponsive container
kj41ef22e2018-04-02 13:34:07 +030074 {{- if eq .Values.liveness.enabled true }}
75 livenessProbe:
76 httpGet:
77 path: /api/multicloud-vio/v0/swagger.json
78 port: {{ .Values.service.internalPort }}
79 scheme: HTTP
80 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
81 periodSeconds: {{ .Values.liveness.periodSeconds }}
82 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
83 successThreshold: {{ .Values.liveness.successThreshold }}
84 failureThreshold: {{ .Values.liveness.failureThreshold }}
85 {{ end -}}
kj41ef22e2018-04-02 13:34:07 +030086 # side car containers
Maciej Wereski989c91c2021-11-17 16:45:14 +010087 {{ include "common.log.sidecar" . | nindent 5 }}
farida azmy72513552021-10-12 18:55:21 +020088 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
kj41ef22e2018-04-02 13:34:07 +030089 volumes:
90 - name: vio-log
91 emptyDir: {}
Maciej Wereski989c91c2021-11-17 16:45:14 +010092 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 5 }}
kj41ef22e2018-04-02 13:34:07 +030093 - name: vio-logconfig
94 configMap:
95 name: {{ include "common.fullname" . }}-log-configmap
96 imagePullSecrets:
97 - name: "{{ include "common.namespace" . }}-docker-registry-key"
98 restartPolicy: Always