blob: f46dc5f287377d8df54a1decde09ef71d9165e2d [file] [log] [blame]
Jakub Latusek7dbe0f52020-10-21 13:36:29 +02001{{/*
Jack Lucas8c3463e2020-06-12 18:36:55 -04002#============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=========================================================
Jakub Latusek7dbe0f52020-10-21 13:36:29 +020018*/}}
Jack Lucas8c3463e2020-06-12 18:36:55 -040019
20apiVersion: apps/v1
21kind: Deployment
22metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
23spec:
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" . }}
Sylvain Desbureaux99baf8e2020-11-21 22:19:29 +010031 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Jack Lucas8c3463e2020-06-12 18:36:55 -040032 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:
Krzysztof Opasiak28d372a2020-09-09 13:14:27 +020041 port: {{ include "common.getPort" (dict "global" . "name" "http") }}
Jack Lucas8c3463e2020-06-12 18:36:55 -040042 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
43 periodSeconds: {{ .Values.liveness.periodSeconds }}
44 {{ end -}}
45 readinessProbe:
46 tcpSocket:
Krzysztof Opasiak28d372a2020-09-09 13:14:27 +020047 port: {{ include "common.getPort" (dict "global" . "name" "http") }}
Jack Lucas8c3463e2020-06-12 18:36:55 -040048 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" . }}
farida azmy50933012021-09-12 12:56:40 +020061 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Jack Lucas8c3463e2020-06-12 18:36:55 -040062 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"