blob: 7963b76cfc5455262644c86eb8ba80cdf98a54a4 [file] [log] [blame]
Jack Lucasd41dbdb2021-02-16 11:07:28 -05001{{/*
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
21apiVersion: apps/v1
22kind: Deployment
23metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24spec:
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 }}
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010034 resources: {{ include "common.resources" . | nindent 12 }}
Jack Lucasd41dbdb2021-02-16 11:07:28 -050035 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" . }}
Jack Lucas4b22da92021-12-09 21:54:10 -050061 - name: DEPLOY_LABEL
62 value: {{ .Values.deployLabel }}
Jack Lucasd41dbdb2021-02-16 11:07:28 -050063 volumes:
64 - name: {{ include "common.fullname" . }}-expected-components
65 configMap:
66 name: {{ include "common.release" . }}-dcae-expected-microservices
67 imagePullSecrets:
68 - name: "{{ include "common.namespace" . }}-docker-registry-key"