Merge "Support execution control of SDC Workflow init"
[oom.git] / kubernetes / dmaap / components / dmaap-bus-controller / templates / deployment.yaml
1 # Copyright © 2018  AT&T Intellectual Property.  All rights reserved.
2 # Modifications Copyright © 2018 Amdocs,Bell Canada
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ .Release.Name }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ .Release.Name }}
33     spec:
34       hostAliases:
35       - ip: "10.12.6.214"
36         hostnames:
37         - "aaf-onap-test.osaaf.org"
38       initContainers:
39       - command:
40         - /root/ready.py
41         args:
42         - --container-name
43         - {{ .Values.postgres.nameOverride }}
44         env:
45         - name: NAMESPACE
46           valueFrom:
47             fieldRef:
48               apiVersion: v1
49               fieldPath: metadata.namespace
50         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
51         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52         name: {{ include "common.name" . }}-readiness
53       containers:
54         - name: {{ include "common.name" . }}
55           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
56           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57           ports:
58           - containerPort: {{ .Values.service.internalPort }}
59           - containerPort: {{ .Values.service.internalPort2 }}
60           {{if eq .Values.liveness.enabled true }}
61           livenessProbe:
62             httpGet:
63               port: {{ .Values.service.internalPort }}
64               path: /webapi/info
65             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
66             periodSeconds: {{ .Values.liveness.periodSeconds }}
67           readinessProbe:
68             httpGet:
69               host: {{ .Values.dmaapMessageRouterService }}
70               port: 3904
71               path: /topics
72             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
73             periodSeconds: {{ .Values.readiness.periodSeconds }}
74           {{ end -}}
75           volumeMounts:
76           - mountPath: /etc/localtime
77             name: localtime
78             readOnly: true
79
80 # NOTE: on the following several configMaps, careful to include / at end
81 #       since there may be more than one file in each mountPath
82           - name: {{ include "common.name" . }}-config
83             mountPath: /opt/app/config/conf/
84
85 # NOTE: the basename of the subdirectory is important - it matches the DBCL API URI
86           - name: {{ include "common.name" . }}-dmaap
87             mountPath: /opt/app/config/dmaap/
88           - name: {{ include "common.name" . }}-dcaelocations
89             mountPath: /opt/app/config/dcaeLocations/
90           - name: {{ include "common.name" . }}-mrclusters
91             mountPath: /opt/app/config/mr_clusters/
92           - name: {{ include "common.name" . }}-topics
93             mountPath: /opt/app/config/topics/
94           - name: {{ include "common.name" . }}-feeds
95             mountPath: /opt/app/config/feeds/
96           resources:
97 {{ include "common.resources" . | indent 12 }}
98         {{- if .Values.nodeSelector }}
99         nodeSelector:
100 {{ toYaml .Values.nodeSelector | indent 10 }}
101         {{- end -}}
102         {{- if .Values.affinity }}
103         affinity:
104 {{ toYaml .Values.affinity | indent 10 }}
105         {{- end }}
106       volumes:
107         - name: localtime
108           hostPath:
109             path: /etc/localtime
110         - name: {{ include "common.name" . }}-config
111           configMap:
112             name: {{ include "common.fullname" . }}-config
113         - name: {{ include "common.name" . }}-dmaap
114           configMap:
115             name: {{ include "common.fullname" . }}-dmaap
116         - name: {{ include "common.name" . }}-dcaelocations
117           configMap:
118             name: {{ include "common.fullname" . }}-dcaelocations
119         - name: {{ include "common.name" . }}-mrclusters
120           configMap:
121             name: {{ include "common.fullname" . }}-mrclusters
122         - name: {{ include "common.name" . }}-topics
123           configMap:
124             name: {{ include "common.fullname" . }}-topics
125         - name: {{ include "common.name" . }}-feeds
126           configMap:
127             name: {{ include "common.fullname" . }}-feeds
128       imagePullSecrets:
129       - name: "{{ include "common.namespace" . }}-docker-registry-key"