kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright © 2017 Amdocs, Bell Canada |
Nishukumar | 376ba1e | 2018-08-03 09:17:23 +0000 | [diff] [blame] | 3 | # Modifications Copyright © 2018 AT&T |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 4 | # |
| 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 | |
kwasiel | d74d38f | 2020-07-23 10:09:57 +0000 | [diff] [blame] | 18 | apiVersion: apps/v1 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 19 | kind: Deployment |
| 20 | metadata: |
| 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 Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 26 | release: {{ include "common.release" . }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
| 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 Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 37 | release: {{ include "common.release" . }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 38 | name: {{ include "common.name" . }} |
| 39 | spec: |
| 40 | containers: |
| 41 | - env: |
Bin Yang | 2e5ecc3 | 2020-01-23 02:46:07 +0000 | [diff] [blame] | 42 | - name: MSB_PROTO |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 43 | value: "{{ if (include "common.needTLS" .) }}https{{ else }}http{{ end }}" |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 44 | - name: MSB_ADDR |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 45 | value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}" |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 46 | - name: MSB_PORT |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 47 | value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.msbPort }}{{ else }}{{ .Values.config.msbPlainPort }}{{ end }}" |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 48 | - name: AAI_ADDR |
| 49 | value: "aai.{{ include "common.namespace" . }}" |
| 50 | - name: AAI_PORT |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 51 | value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.aai.aaiPort }}{{ else }}{{ .Values.config.aai.aaiPlainPort }}{{ end }}" |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 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 }}" |
Andreas Geissler | fcb7878 | 2022-11-07 17:57:41 +0100 | [diff] [blame^] | 58 | - name: AAI_PROTOCOL |
| 59 | value: "{{- if (include "common.needTLS" .) }}https{{ else }}http{{ end }}" |
Bin Yang | 2e5ecc3 | 2020-01-23 02:46:07 +0000 | [diff] [blame] | 60 | - name: SSL_ENABLED |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 61 | value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.ssl_enabled }}{{ else }}false{{ end }}" |
Mukul | 62927a1 | 2018-09-11 11:42:00 +0000 | [diff] [blame] | 62 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 63 | {{ include "common.resources" . | indent 12 }} |
Sylvain Desbureaux | 37dc40c | 2020-11-21 22:46:57 +0100 | [diff] [blame] | 64 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 65 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 66 | name: {{ include "common.name" . }} |
| 67 | volumeMounts: |
Maciej Wereski | 989c91c | 2021-11-17 16:45:14 +0100 | [diff] [blame] | 68 | - mountPath: "{{ .Values.log.path }}" |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 69 | name: framework-log |
| 70 | - mountPath: /opt/multivimbroker/multivimbroker/pub/config/log.yml |
| 71 | name: framework-logconfig |
| 72 | subPath: log.yml |
Mandeep Khinda | a91aaa2 | 2018-05-01 20:52:44 +0000 | [diff] [blame] | 73 | - mountPath: /opt/multivimbroker/multivimbroker/pub/config/provider-plugin.json |
| 74 | name: provider-plugin |
| 75 | subPath: provider-plugin.json |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 76 | ports: |
| 77 | - containerPort: {{ .Values.service.internalPort }} |
| 78 | # disable liveness probe when breakpoints set in debugger |
| 79 | # so K8s doesn't restart unresponsive container |
| 80 | {{- if eq .Values.liveness.enabled true }} |
| 81 | livenessProbe: |
| 82 | httpGet: |
| 83 | path: /api/multicloud/v0/swagger.json |
| 84 | port: {{ .Values.service.internalPort }} |
Andreas Geissler | dfa23c8 | 2022-05-13 16:54:43 +0200 | [diff] [blame] | 85 | scheme: "{{ if (include "common.needTLS" .) }}HTTPS{{ else }}HTTP{{ end }}" |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 86 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 87 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 88 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
| 89 | successThreshold: {{ .Values.liveness.successThreshold }} |
| 90 | failureThreshold: {{ .Values.liveness.failureThreshold }} |
| 91 | {{ end -}} |
| 92 | |
| 93 | # side car containers |
Maciej Wereski | 989c91c | 2021-11-17 16:45:14 +0100 | [diff] [blame] | 94 | {{ include "common.log.sidecar" . | nindent 5 }} |
farida azmy | 7251355 | 2021-10-12 18:55:21 +0200 | [diff] [blame] | 95 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 96 | volumes: |
| 97 | - name: framework-log |
| 98 | emptyDir: {} |
Mandeep Khinda | a91aaa2 | 2018-05-01 20:52:44 +0000 | [diff] [blame] | 99 | - name: provider-plugin |
| 100 | configMap: |
| 101 | name: {{ include "common.fullname" . }}-provider-plugin-configmap |
Maciej Wereski | 989c91c | 2021-11-17 16:45:14 +0100 | [diff] [blame] | 102 | {{ include "common.log.volumes" . | nindent 5 }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 103 | - name: framework-logconfig |
| 104 | configMap: |
| 105 | name: {{ include "common.fullname" . }}-log-configmap |
| 106 | imagePullSecrets: |
| 107 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
| 108 | restartPolicy: Always |