blob: f36c2af0025c2400aee0a415f90b85d804d40688 [file] [log] [blame]
Jakub Latusek7dbe0f52020-10-21 13:36:29 +02001{{/*
Jack Lucas7723ffe2020-02-13 17:19:01 -05002#============LICENSE_START========================================================
3# ================================================================================
4# Copyright (c) 2019-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 Lucas7723ffe2020-02-13 17:19:01 -050019
20apiVersion: apps/v1
21kind: Deployment
22metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
23spec:
24 replicas: 1
25 selector: {{- include "common.selectors" . | nindent 4 }}
26 template:
27 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
28 spec:
29 initContainers:
30 - name: {{ include "common.name" . }}-readiness
Sylvain Desbureaux99baf8e2020-11-21 22:19:29 +010031 image: {{ include "repositoryGenerator.image.readiness" . }}
Jack Lucas7723ffe2020-02-13 17:19:01 -050032 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
33 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020034 - /app/ready.py
Jack Lucas7723ffe2020-02-13 17:19:01 -050035 args:
36 - --container-name
37 - dcaemod-runtime-api
38 - --container-name
39 - dcaemod-nifi-registry
40 - --container-name
41 - dcaemod-onboarding-api
42 - "-t"
43 - "15"
44 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
50 containers:
51 - name: {{ include "common.name" . }}
Sylvain Desbureaux99baf8e2020-11-21 22:19:29 +010052 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Jack Lucas7723ffe2020-02-13 17:19:01 -050053 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 ports: {{ include "common.containerPorts" . | nindent 12 }}
55 {{- if eq .Values.liveness.enabled true }}
56 livenessProbe:
57 tcpSocket:
58 port: {{ .Values.liveness.port }}
59 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
60 periodSeconds: {{ .Values.liveness.periodSeconds }}
61 {{ end }}
62 readinessProbe:
63 httpGet:
64 path: {{ .Values.readiness.path }}
65 port: {{ .Values.readiness.port }}
66 scheme: {{ .Values.readiness.scheme }}
67 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68 periodSeconds: {{ .Values.readiness.periodSeconds }}
69 env:
70 - name: NIFI_REGISTRY_URL
71 value: {{ .Values.config.nifiRegistryURL }}
72 - name : ONBOARDING_API_URL
73 value: {{ .Values.config.onboardingAPIURL }}
74 resources: {{ include "common.resources" . | nindent 12 }}
farida azmy50933012021-09-12 12:56:40 +020075 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Jack Lucas7723ffe2020-02-13 17:19:01 -050076 imagePullSecrets:
77 - name: "{{ include "common.namespace" . }}-docker-registry-key"