DMAAP changes
[oom.git] / kubernetes / dmaap / components / message-router / templates / statefulset.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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 apiVersion: apps/v1beta1
16 kind: StatefulSet
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - {{ .Values.kafka.name }}
39         - --container-name
40         - {{ .Values.zookeeper.name }}
41         env:
42         - name: NAMESPACE
43           valueFrom:
44             fieldRef:
45               apiVersion: v1
46               fieldPath: metadata.namespace
47         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
48         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49         name: {{ include "common.name" . }}-readiness
50       containers:
51         - name: {{ include "common.name" . }}
52           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
53           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54           ports:
55           - containerPort: {{ .Values.service.externalPort }}
56           - containerPort: {{ .Values.service.externalPort2 }}
57           {{- if eq .Values.liveness.enabled true }}
58           livenessProbe:
59             tcpSocket:
60               port: {{ .Values.service.externalPort }}
61             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
62             periodSeconds: {{ .Values.liveness.periodSeconds }}
63           {{ end -}}
64           readinessProbe:
65             tcpSocket:
66               port: {{ .Values.service.externalPort }}
67             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
68             periodSeconds: {{ .Values.readiness.periodSeconds }}
69           env:
70           - name: enableCadi
71             value: "true"
72           volumeMounts:
73           - mountPath: /etc/localtime
74             name: localtime
75             readOnly: true
76           - mountPath: /appl/dmaapMR1/bundleconfig/etc/appprops/MsgRtrApi.properties
77             subPath: MsgRtrApi.properties
78             name: appprops
79           - mountPath: /appl/dmaapMR1/etc/cadi.properties
80             subPath: cadi.properties
81             name: cadi
82           - mountPath: /appl/dmaapMR1/etc/keyfile
83             subPath: mykey
84             name: mykey
85           resources:
86 {{ include "common.resources" . | indent 12 }}
87       volumes:
88         - name: localtime
89           hostPath:
90             path: /etc/localtime
91         - name: appprops
92           configMap:
93             name: {{ include "common.fullname" . }}-msgrtrapi-prop-configmap
94         - name: cadi
95           configMap:
96             name: {{ include "common.fullname" . }}-cadi-prop-configmap
97         - name: mykey
98           secret:
99             secretName: {{ include "common.fullname" . }}-secret
100       imagePullSecrets:
101       - name: "{{ include "common.namespace" . }}-docker-registry-key"