[DMAAP] DMaaP ServiceMesh compatibility
[oom.git] / kubernetes / dmaap / components / message-router / templates / statefulset.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018 AT&T
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: apps/v1
19 kind: StatefulSet
20 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
21 spec:
22   selector: {{- include "common.selectors" . | nindent 4 }}
23   serviceName: {{ include "common.servicename" . }}
24   replicas: {{ .Values.replicaCount }}
25   template:
26     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
27     spec:
28       initContainers:
29       - command:
30         - /app/ready.py
31         args:
32         - --container-name
33         - {{ .Values.kafka.name }}
34         - --container-name
35         - {{ .Values.zookeeper.name }}
36         env:
37         - name: NAMESPACE
38           valueFrom:
39             fieldRef:
40               apiVersion: v1
41               fieldPath: metadata.namespace
42         image: {{ include "repositoryGenerator.image.readiness" . }}
43         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
44         name: {{ include "common.name" . }}-readiness
45       {{ include "common.certInitializer.initContainer" . | indent 6 | trim }}
46       {{- if  .Values.global.aafEnabled }}
47       - name: {{ include "common.name" . }}-update-config
48         command:
49         - sh
50         args:
51         - -c
52         - |
53           export $(cat {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop | xargs -0);
54           cd /config-input  && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done
55         volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
56         - mountPath: /config
57           name: jetty
58         - mountPath: /config-input
59           name: etc
60         image: {{ include "repositoryGenerator.image.envsubst" . }}
61         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
62       {{- end }}
63       containers:
64       {{- if .Values.prometheus.jmx.enabled }}
65         - name: prometheus-jmx-exporter
66           image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.prometheus.jmx.image }}:{{ .Values.prometheus.jmx.imageTag }}
67           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68           command:
69           - java
70           - -XX:+UnlockExperimentalVMOptions
71           - -XX:+UseCGroupMemoryLimitForHeap
72           - -XX:MaxRAMFraction=1
73           - -XshowSettings:vm
74           - -jar
75           - jmx_prometheus_httpserver.jar
76           - {{ .Values.prometheus.jmx.port | quote }}
77           - /etc/jmx-kafka/jmx-mrservice-prometheus.yml
78           ports:
79           - containerPort: {{ .Values.prometheus.jmx.port }}
80           resources:
81           volumeMounts:
82           - name: jmx-config
83             mountPath: /etc/jmx-kafka
84       {{- end }}
85         - name: {{ include "common.name" . }}
86           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
87           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
88           {{- if  .Values.global.aafEnabled }}
89           command:
90           - sh
91           args:
92           - -c
93           - |
94             cp /jetty-config/ajsc-jetty.xml /appl/dmaapMR1/etc/
95             cp /jetty-config/cadi.properties {{ .Values.certInitializer.appMountPath }}/local/cadi.properties
96             /bin/sh /appl/startup.sh
97           {{- end }}
98           ports: {{ include "common.containerPorts" . | nindent 10  }}
99           {{- if eq .Values.liveness.enabled true }}
100           livenessProbe:
101             tcpSocket:
102               port: {{ .Values.liveness.port }}
103             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
104             periodSeconds: {{ .Values.liveness.periodSeconds }}
105             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
106             successThreshold: {{ .Values.liveness.successThreshold }}
107             failureThreshold: {{ .Values.liveness.failureThreshold }}
108           {{ end }}
109           readinessProbe:
110             tcpSocket:
111               port: {{ .Values.readiness.port }}
112             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
113             periodSeconds: {{ .Values.readiness.periodSeconds }}
114             timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
115             successThreshold: {{ .Values.readiness.successThreshold }}
116             failureThreshold: {{ .Values.readiness.failureThreshold }}
117           startupProbe:
118             tcpSocket:
119                 port: {{ .Values.startup.port }}
120             initialDelaySeconds: {{ .Values.startup.initialDelaySeconds }}
121             periodSeconds: {{ .Values.startup.periodSeconds }}
122             timeoutSeconds: {{ .Values.startup.timeoutSeconds }}
123             successThreshold: {{ .Values.startup.successThreshold }}
124             failureThreshold: {{ .Values.startup.failureThreshold }}
125           env:
126           - name: enableCadi
127             value: "{{ .Values.global.aafEnabled }}"
128           volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
129           - mountPath: /etc/localtime
130             name: localtime
131             readOnly: true
132           - mountPath: /appl/dmaapMR1/bundleconfig/etc/appprops/MsgRtrApi.properties
133             subPath: MsgRtrApi.properties
134             name: appprops
135           - mountPath: /appl/dmaapMR1/bundleconfig/etc/logback.xml
136             subPath: logback.xml
137             name: logback
138           - mountPath: /appl/dmaapMR1/etc/keyfile
139             subPath: mykey
140             name: mykey
141           {{- if  .Values.global.aafEnabled }}
142           - mountPath: /appl/dmaapMR1/etc/runner-web.xml
143             subPath: runner-web.xml
144             name: etc
145           - mountPath: /appl/dmaapMR1/bundleconfig/etc/sysprops/sys-props.properties
146             subPath: sys-props.properties
147             name: sys-props
148           - mountPath: /jetty-config
149             name: jetty
150           {{- end }}
151           resources: {{ include "common.resources" . | nindent 12 }}
152       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
153       volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
154         - name: localtime
155           hostPath:
156             path: /etc/localtime
157         - name: appprops
158           configMap:
159             name: {{ include "common.fullname" . }}-msgrtrapi-prop-configmap
160         - name: etc
161           configMap:
162             name: {{ include "common.fullname" . }}-etc
163         - name: logback
164           configMap:
165             name: {{ include "common.fullname" . }}-logback-xml-configmap
166         {{- if .Values.prometheus.jmx.enabled }}
167         - name: jmx-config
168           configMap:
169             name: {{ include "common.fullname" . }}-prometheus-configmap
170         {{- end }}
171         - name: mykey
172           secret:
173             secretName: {{ include "common.fullname" . }}-secret
174         - name: sys-props
175           configMap:
176             name: {{ include "common.fullname" . }}-sys-props
177         - name: jetty
178           emptyDir: {}
179       imagePullSecrets:
180       - name: "{{ include "common.namespace" . }}-docker-registry-key"