Merge "[UUI] Service Mesh Compliance for UUI"
[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: ASDC_ADDRESS
49               value: {{ .Values.externalServices.sdc_be_https }}
50             - name: SCHEMA_MAP_PATH
51               value: {{ .Values.schemaMap.directory }}/{{ .Values.schemaMap.filename }}
52           volumeMounts:
53             - name: schema-map
54               mountPath: {{ .Values.schemaMap.directory }}
55       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
56       volumes:
57         - name: schema-map
58           configMap:
59             name: {{ include "common.release" . }}-dcae-external-repo-configmap-schema-map
60             defaultMode: 0755
61             items:
62               - key: {{ .Values.schemaMap.filename }}
63                 path: {{ .Values.schemaMap.filename }}
64       imagePullSecrets:
65       - name: "{{ include "common.namespace" . }}-docker-registry-key"