Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / dcaemod / components / dcaemod-healthcheck / templates / deployment.yaml
1 {{/*
2 #============LICENSE_START========================================================
3 # ================================================================================
4 # Copyright (c) 2020 AT&T Intellectual Property. 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   selector: {{- include "common.selectors" . | nindent 4 }}
25   replicas: 1
26   template:
27     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
28     spec:
29       containers:
30         - name: {{ include "common.name" . }}
31           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
32           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
33           resources:
34 {{ include "common.resources" . | indent 12 }}
35           ports: {{ include "common.containerPorts" . | nindent 10  }}
36           # disable liveness probe when breakpoints set in debugger
37           # so K8s doesn't restart unresponsive container
38           {{- if eq .Values.liveness.enabled true }}
39           livenessProbe:
40             tcpSocket:
41               port: {{ include "common.getPort" (dict "global" . "name" "http") }}
42             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
43             periodSeconds: {{ .Values.liveness.periodSeconds }}
44           {{ end -}}
45           readinessProbe:
46             tcpSocket:
47               port: {{ include "common.getPort" (dict "global" . "name" "http") }}
48             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
49             periodSeconds: {{ .Values.readiness.periodSeconds }}
50           volumeMounts:
51             - mountPath: /opt/app/expected-components.json
52               subPath: expected-components.json
53               name: {{ include "common.fullname" .}}-expected-components
54           env:
55             - name: DCAE_NAMESPACE
56               value: {{ .Values.dcae_ns }}
57             - name: ONAP_NAMESPACE
58               value: {{ include "common.namespace" . }}
59             - name: HELM_RELEASE
60               value: {{ include "common.release" . }}
61       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
62       volumes:
63         - name: {{ include "common.fullname" . }}-expected-components
64           configMap:
65             name: {{ include "common.release" . }}-dcaemod-expected-components
66       imagePullSecrets:
67       - name: "{{ include "common.namespace" . }}-docker-registry-key"