blob: a70cc4af5acc6cb55b40b3612cf1cca9a373fae6 [file] [log] [blame]
Jack Lucas7723ffe2020-02-13 17:19:01 -05001#============LICENSE_START========================================================
2# ================================================================================
3# Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
4# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# ============LICENSE_END=========================================================
17
18apiVersion: apps/v1
19kind: Deployment
20metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
21spec:
22 replicas: 1
23 selector: {{- include "common.selectors" . | nindent 4 }}
24 template:
25 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
26 spec:
27 initContainers:
28 - name: {{ include "common.name" . }}-readiness
29 image: {{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}
30 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
31 command:
32 - /root/ready.py
33 args:
34 - --container-name
35 - dcaemod-runtime-api
36 - --container-name
37 - dcaemod-nifi-registry
38 - --container-name
39 - dcaemod-onboarding-api
40 - "-t"
41 - "15"
42 env:
43 - name: NAMESPACE
44 valueFrom:
45 fieldRef:
46 apiVersion: v1
47 fieldPath: metadata.namespace
48 containers:
49 - name: {{ include "common.name" . }}
50 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 ports: {{ include "common.containerPorts" . | nindent 12 }}
53 {{- if eq .Values.liveness.enabled true }}
54 livenessProbe:
55 tcpSocket:
56 port: {{ .Values.liveness.port }}
57 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
58 periodSeconds: {{ .Values.liveness.periodSeconds }}
59 {{ end }}
60 readinessProbe:
61 httpGet:
62 path: {{ .Values.readiness.path }}
63 port: {{ .Values.readiness.port }}
64 scheme: {{ .Values.readiness.scheme }}
65 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
66 periodSeconds: {{ .Values.readiness.periodSeconds }}
67 env:
68 - name: NIFI_REGISTRY_URL
69 value: {{ .Values.config.nifiRegistryURL }}
70 - name : ONBOARDING_API_URL
71 value: {{ .Values.config.onboardingAPIURL }}
72 resources: {{ include "common.resources" . | nindent 12 }}
73 imagePullSecrets:
74 - name: "{{ include "common.namespace" . }}-docker-registry-key"