Merge "Attempt2: Post-install jobs for DMaaP Provisioning"
[oom.git] / kubernetes / dmaap / components / dmaap-bc / 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           resources:
86 {{ include "common.resources" . | indent 12 }}
87         {{- if .Values.nodeSelector }}
88         nodeSelector:
89 {{ toYaml .Values.nodeSelector | indent 10 }}
90         {{- end -}}
91         {{- if .Values.affinity }}
92         affinity:
93 {{ toYaml .Values.affinity | indent 10 }}
94         {{- end }}
95       volumes:
96         - name: localtime
97           hostPath:
98             path: /etc/localtime
99         - name: {{ include "common.name" . }}-config
100           configMap:
101             name: {{ include "common.fullname" . }}-config
102       imagePullSecrets:
103       - name: "{{ include "common.namespace" . }}-docker-registry-key"