blob: 2929b56bc6baf9b5129c5f2ba507fe01d344e7aa [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 Desbureaux1694e1d2020-08-21 09:58:25 +020031 image: {{ include "common.repository" . }}/{{ .Values.global.readinessImage }}
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-genprocessor-http
38 - --container-name
39 - dcaemod-nifi-registry
40 - --container-name
41 - dcaemod-distributor-api
42 - "-t"
43 - "15"
44 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
50 - name: {{ include "common.name" . }}-create-bucket
51 image: {{ .Values.config.curlImage }}
52 args:
53 - -kv
54 - -X
55 - POST
56 - -H
57 - "Content-Type: application/json"
58 - --data-binary
59 - '{"name": "dcaemod-flows"}'
60 - http://dcaemod-nifi-registry:18080/nifi-registry-api/buckets
61
62 containers:
63 - name: {{ include "common.name" . }}
64 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
65 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66 ports: {{ include "common.containerPorts" . | nindent 12 }}
67 {{- if eq .Values.liveness.enabled true }}
68 livenessProbe:
69 tcpSocket:
70 port: {{ .Values.liveness.port }}
71 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
72 periodSeconds: {{ .Values.liveness.periodSeconds }}
73 {{ end }}
74 readinessProbe:
75 httpGet:
76 path: {{ .Values.readiness.path }}
77 port: {{ .Values.readiness.port }}
78 scheme: {{ .Values.readiness.scheme }}
79 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
80 periodSeconds: {{ .Values.readiness.periodSeconds }}
81 resources: {{ include "common.resources" . | nindent 12 }}
82 env:
83 - name: NIFI_DCAE_JARS_INDEX_URL
84 value: {{ .Values.config.nifiJarsIndexURL }}
85 - name: NIFI_DCAE_DISTRIBUTOR_API_URL
86 value: {{ .Values.config.distributorAPIURL }}
87 imagePullSecrets:
88 - name: "{{ include "common.namespace" . }}-docker-registry-key"