Merge "[DCAEGEN2] Ves-open-api Add mech to load config at deploy time"
[oom.git] / kubernetes / dcaegen2-services / components / dcae-ves-openapi-manager / templates / deployment.yaml
1 {{/*
2 #============LICENSE_START========================================================
3 # ================================================================================
4 # Copyright (c) 2021 Nokia. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18 */}}
19
20 apiVersion: apps/v1
21 kind: Deployment
22 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
23 spec:
24   replicas: 1
25   selector: {{- include "common.selectors" . | nindent 4 }}
26   template:
27     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
28     spec:
29       initContainers:
30       {{ include "common.readinessCheck.waitFor" . | indent 6 | trim }}
31       containers:
32         - name: {{ include "common.name" . }}
33           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
34           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
35           resources: {{ include "common.resources" . | nindent 12 }}
36           ports: {{ include "common.containerPorts" . | nindent 12 }}
37           # disable liveness probe when breakpoints set in debugger
38           # so K8s doesn't restart unresponsive container
39           {{- if eq .Values.liveness.enabled true }}
40           livenessProbe:
41             httpGet:
42               path: {{ .Values.liveness.path }}
43               port: {{ .Values.liveness.port }}
44             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
45             periodSeconds: {{ .Values.liveness.periodSeconds }}
46           {{ end }}
47           env:
48           - name: SDC_ADDRESS
49             value: {{ .Values.externalServices.sdc_be_https }}
50           - name: SCHEMA_MAP_PATH
51             value: {{ .Values.schemaMap.directory }}/{{ .Values.schemaMap.filename }}
52           - name: SECURITY_PROTOCOL
53             value: {{ .Values.config.kafka.securityProtocol }}
54           - name: SASL_MECHANISM
55             value: {{ .Values.config.kafka.saslMechanism }}
56           - name: SASL_JAAS_CONFIG
57             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ves-openapi-kafka-secret" "key" "sasl.jaas.config") | indent 12 }}
58           volumeMounts:
59             - name: schema-map
60               mountPath: {{ .Values.schemaMap.directory }}
61             - name: app-config
62               mountPath: /app/config/
63       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
64       volumes:
65         - name: schema-map
66           configMap:
67             name: {{ include "common.release" . }}-dcae-external-repo-configmap-schema-map
68             defaultMode: 0755
69             items:
70               - key: {{ .Values.schemaMap.filename }}
71                 path: {{ .Values.schemaMap.filename }}
72         - name: app-config
73           configMap:
74             name: {{ include "common.fullname" . }}-application-config-configmap
75             defaultMode: 420
76             optional: true
77       imagePullSecrets:
78       - name: "{{ include "common.namespace" . }}-docker-registry-key"