blob: 7a19fcfc0ba5cce6e8a80aae7e501b4450d5245f [file] [log] [blame]
Bin Yangf28d0b12019-05-07 01:27:31 +00001{{/*
2# Copyright (c) 2019, CMCC Technologies Co., Ltd.
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
kwasield74d38f2020-07-23 10:09:57 +000017apiVersion: apps/v1
Bin Yangf28d0b12019-05-07 01:27:31 +000018kind: 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 "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
Bin Yangf28d0b12019-05-07 01:27:31 +000026 heritage: {{ .Release.Service }}
27spec:
28 replicas: {{ .Values.replicaCount }}
29 selector:
30 matchLabels:
31 app: {{ include "common.name" . }}
32 template:
33 metadata:
34 labels:
35 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
Bin Yangf28d0b12019-05-07 01:27:31 +000037 name: {{ include "common.name" . }}
38 annotations:
39 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
40 spec:
41 containers:
42 - env:
Bin Yang842a4842020-02-04 01:03:14 +080043 - name: MSB_PROTO
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020044 value: "{{ if (include "common.needTLS" .) }}https{{ else }}http{{ end }}"
Bin Yangf28d0b12019-05-07 01:27:31 +000045 - name: MSB_ADDR
46 value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}"
47 - name: MSB_PORT
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020048 value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.msbPort }}{{ else }}{{ .Values.config.msbPlainPort }}{{ end }}"
Bin Yangf28d0b12019-05-07 01:27:31 +000049 - name: AAI_ADDR
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020050 value: "aai.{{ include "common.namespace" . }}"
Bin Yangf28d0b12019-05-07 01:27:31 +000051 - name: AAI_PORT
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020052 value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.aai.aaiPort }}{{ else }}{{ .Values.config.aai.aaiPlainPort }}{{ end }}"
Bin Yangf28d0b12019-05-07 01:27:31 +000053 - name: AAI_SCHEMA_VERSION
54 value: "{{ .Values.config.aai.schemaVersion }}"
55 - name: AAI_USERNAME
56 value: "{{ .Values.config.aai.username }}"
57 - name: AAI_PASSWORD
58 value: "{{ .Values.config.aai.password }}"
Bin Yang842a4842020-02-04 01:03:14 +080059 - name: SSL_ENABLED
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020060 value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.ssl_enabled }}{{ else }}false{{ end }}"
Bin Yangf28d0b12019-05-07 01:27:31 +000061 name: {{ include "common.name" . }}
62 volumeMounts:
Maciej Wereski989c91c2021-11-17 16:45:14 +010063 - mountPath: "{{ .Values.log.path }}"
Bin Yangf28d0b12019-05-07 01:27:31 +000064 name: fcaps-log
65 - mountPath: /opt/fcaps/fcaps/pub/config/log.yml
66 name: fcaps-logconfig
67 subPath: log.yml
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010068 resources: {{ include "common.resources" . | nindent 9 }}
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010069 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Bin Yangf28d0b12019-05-07 01:27:31 +000070 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
71 ports:
72 - containerPort: {{ .Values.service.internalPort }}
73 # disable liveness probe when breakpoints set in debugger
74 # so K8s doesn't restart unresponsive container
75 {{ if .Values.liveness.enabled }}
76 livenessProbe:
77 httpGet:
78 path: /api/multicloud-fcaps/v1/healthcheck
79 port: {{ .Values.service.internalPort }}
Andreas Geisslerdfa23c82022-05-13 16:54:43 +020080 scheme: {{ if (include "common.needTLS" .) }}HTTPS{{ else }}HTTP{{ end }}
Bin Yangf28d0b12019-05-07 01:27:31 +000081 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
82 periodSeconds: {{ .Values.liveness.periodSeconds }}
83 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
84 successThreshold: {{ .Values.liveness.successThreshold }}
85 failureThreshold: {{ .Values.liveness.failureThreshold }}
86 {{ end }}
87 # side car containers
Maciej Wereski989c91c2021-11-17 16:45:14 +010088 {{ include "common.log.sidecar" . | nindent 5 }}
Sylvain Desbureaux37dc40c2020-11-21 22:46:57 +010089 - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.rabbitmq }}
Bin Yangf28d0b12019-05-07 01:27:31 +000090 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
91 name: rabbit-mq
Bin Yangdf4fc032022-03-22 16:08:22 +080092 - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.memcached }}
93 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
94 name: memcached
farida azmy72513552021-10-12 18:55:21 +020095 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Bin Yangf28d0b12019-05-07 01:27:31 +000096 volumes:
97 - name: fcaps-log
98 emptyDir: {}
Maciej Wereski989c91c2021-11-17 16:45:14 +010099 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 5 }}
Bin Yangf28d0b12019-05-07 01:27:31 +0000100 - name: fcaps-logconfig
101 configMap:
102 name: {{ include "common.fullname" . }}-log-configmap
103 imagePullSecrets:
104 - name: "{{ include "common.namespace" . }}-docker-registry-key"
kwasield74d38f2020-07-23 10:09:57 +0000105 restartPolicy: Always