Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / dcaegen2-services / components / dcae-ms-healthcheck / templates / deployment.yaml
1 {{/*
2 #============LICENSE_START========================================================
3 # ================================================================================
4 # Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved.
5 # Modifications Copyright © 2018 Amdocs, Bell Canada
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ============LICENSE_END=========================================================
19 */}}
20
21 apiVersion: apps/v1
22 kind: Deployment
23 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24 spec:
25   replicas: 1
26   selector: {{- include "common.selectors" . | nindent 4 }}
27   template:
28     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
29     spec:
30       containers:
31         - name: {{ include "common.name" . }}
32           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
33           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
34           resources: {{ include "common.resources" . | nindent 12 }}
35           ports: {{ include "common.containerPorts" . | nindent 12  }}
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: {{ include "common.namespace"  . }}
57             - name: ONAP_NAMESPACE
58               value: {{ include "common.namespace" . }}
59             - name: HELM_RELEASE
60               value: {{ include "common.release" . }}
61             - name: DEPLOY_LABEL
62               value: {{ .Values.deployLabel }}
63       volumes:
64         - name: {{ include "common.fullname" . }}-expected-components
65           configMap:
66             name: {{ include "common.release" . }}-dcae-expected-microservices
67       {{- include "common.imagePullSecrets" . | nindent 6 }}