Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / dcaemod / components / dcaemod-designtool / templates / deployment.yaml
1 {{/*
2 #============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=========================================================
18 */}}
19
20 apiVersion: apps/v1
21 kind: Deployment
22 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
23 spec:
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
31           image: {{ include "repositoryGenerator.image.readiness" . }}
32           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
33           command:
34             - /app/ready.py
35           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: {{ include "repositoryGenerator.image.curl" . }}
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 "repositoryGenerator.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       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
88       imagePullSecrets:
89         - name: "{{ include "common.namespace" . }}-docker-registry-key"