blob: 174eb2c3a9b652f476a881964f65ec9de176c76d [file] [log] [blame]
Jakub Latusek67f4e8d2020-10-21 13:36:29 +02001{{/*
pramodad6382f2018-03-28 22:32:00 +00002# Copyright © 2017 Amdocs, Bell Canada
Durgpal7ad40692018-08-03 07:28:36 +00003# Modifications Copyright © 2018 AT&T
efiacorfe8f8c92022-03-15 15:36:48 +00004# Modifications Copyright © 2021-2022 Nordix Foundation
pramodad6382f2018-03-28 22:32:00 +00005#
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.
Jakub Latusek67f4e8d2020-10-21 13:36:29 +020017*/}}
Sylvain Desbureauxbe728882020-03-06 08:58:23 +010018
19apiVersion: apps/v1
sunil unnavab96a3912018-12-06 09:50:39 -050020kind: StatefulSet
Sylvain Desbureauxbe728882020-03-06 08:58:23 +010021metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
pramodad6382f2018-03-28 22:32:00 +000022spec:
Sylvain Desbureauxbe728882020-03-06 08:58:23 +010023 selector: {{- include "common.selectors" . | nindent 4 }}
24 serviceName: {{ include "common.servicename" . }}
pramodad6382f2018-03-28 22:32:00 +000025 replicas: {{ .Values.replicaCount }}
26 template:
Sylvain Desbureauxbe728882020-03-06 08:58:23 +010027 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
pramodad6382f2018-03-28 22:32:00 +000028 spec:
29 initContainers:
Sylvain Desbureauxe5b6ffc2021-02-10 12:11:53 +010030 {{ include "common.certInitializer.initContainer" . | indent 6 | trim }}
31 {{- if .Values.global.aafEnabled }}
32 - name: {{ include "common.name" . }}-update-config
33 command:
34 - sh
35 args:
36 - -c
37 - |
38 export $(cat {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop | xargs -0);
39 cd /config-input && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done
40 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
41 - mountPath: /config
42 name: jetty
43 - mountPath: /config-input
44 name: etc
45 image: {{ include "repositoryGenerator.image.envsubst" . }}
46 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 {{- end }}
pramodad6382f2018-03-28 22:32:00 +000048 containers:
su622ba3865652020-03-25 17:26:51 -040049 {{- if .Values.prometheus.jmx.enabled }}
50 - name: prometheus-jmx-exporter
Sylvain Desbureaux6b096542020-11-21 22:51:24 +010051 image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.prometheus.jmx.image }}:{{ .Values.prometheus.jmx.imageTag }}
su622ba3865652020-03-25 17:26:51 -040052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 command:
54 - java
55 - -XX:+UnlockExperimentalVMOptions
56 - -XX:+UseCGroupMemoryLimitForHeap
57 - -XX:MaxRAMFraction=1
58 - -XshowSettings:vm
59 - -jar
60 - jmx_prometheus_httpserver.jar
61 - {{ .Values.prometheus.jmx.port | quote }}
62 - /etc/jmx-kafka/jmx-mrservice-prometheus.yml
63 ports:
64 - containerPort: {{ .Values.prometheus.jmx.port }}
65 resources:
66 volumeMounts:
67 - name: jmx-config
68 mountPath: /etc/jmx-kafka
69 {{- end }}
efiacorfe8f8c92022-03-15 15:36:48 +000070 - name: srimzi-zk-entrance
Andreas Geisslere7d56872022-06-22 11:23:11 +020071 image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.zookeeper.entrance.image }}
efiacorfe8f8c92022-03-15 15:36:48 +000072 command:
73 - /opt/stunnel/stunnel_run.sh
74 ports:
75 - containerPort: {{ .Values.global.zkTunnelService.internalPort }}
76 name: zoo
77 protocol: TCP
78 env:
79 - name: LOG_LEVEL
80 value: debug
81 - name: STRIMZI_ZOOKEEPER_CONNECT
82 value: '{{ include "common.release" . }}-strimzi-zookeeper-client:{{ .Values.global.zkTunnelService.internalPort }}'
83 imagePullPolicy: Always
84 livenessProbe:
85 exec:
86 command:
87 - /opt/stunnel/stunnel_healthcheck.sh
88 - '{{ .Values.global.zkTunnelService.internalPort }}'
89 failureThreshold: 3
90 initialDelaySeconds: 15
91 periodSeconds: 10
92 successThreshold: 1
93 timeoutSeconds: 5
94 readinessProbe:
95 exec:
96 command:
97 - /opt/stunnel/stunnel_healthcheck.sh
98 - '{{ .Values.global.zkTunnelService.internalPort }}'
99 failureThreshold: 3
100 initialDelaySeconds: 15
101 periodSeconds: 10
102 successThreshold: 1
103 timeoutSeconds: 5
104 volumeMounts:
105 - mountPath: /etc/cluster-operator-certs/
106 name: cluster-operator-certs
107 - mountPath: /etc/cluster-ca-certs/
108 name: cluster-ca-certs
pramodad6382f2018-03-28 22:32:00 +0000109 - name: {{ include "common.name" . }}
Sylvain Desbureaux6b096542020-11-21 22:51:24 +0100110 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
pramodad6382f2018-03-28 22:32:00 +0000111 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureauxe5b6ffc2021-02-10 12:11:53 +0100112 {{- if .Values.global.aafEnabled }}
113 command:
114 - sh
115 args:
116 - -c
117 - |
118 cp /jetty-config/ajsc-jetty.xml /appl/dmaapMR1/etc/
119 cp /jetty-config/cadi.properties {{ .Values.certInitializer.appMountPath }}/local/cadi.properties
120 /bin/sh /appl/startup.sh
121 {{- end }}
Sylvain Desbureauxbe728882020-03-06 08:58:23 +0100122 ports: {{ include "common.containerPorts" . | nindent 10 }}
pramodad6382f2018-03-28 22:32:00 +0000123 {{- if eq .Values.liveness.enabled true }}
124 livenessProbe:
125 tcpSocket:
Sylvain Desbureauxbe728882020-03-06 08:58:23 +0100126 port: {{ .Values.liveness.port }}
pramodad6382f2018-03-28 22:32:00 +0000127 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
128 periodSeconds: {{ .Values.liveness.periodSeconds }}
su622b8b763cd2019-10-14 15:37:37 -0400129 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Sylvain Desbureaux8fade992021-12-06 11:33:11 +0100130 successThreshold: {{ .Values.liveness.successThreshold }}
131 failureThreshold: {{ .Values.liveness.failureThreshold }}
132 {{ end }}
pramodad6382f2018-03-28 22:32:00 +0000133 readinessProbe:
134 tcpSocket:
Sylvain Desbureauxbe728882020-03-06 08:58:23 +0100135 port: {{ .Values.readiness.port }}
pramodad6382f2018-03-28 22:32:00 +0000136 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
137 periodSeconds: {{ .Values.readiness.periodSeconds }}
su622b8b763cd2019-10-14 15:37:37 -0400138 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
Sylvain Desbureaux8fade992021-12-06 11:33:11 +0100139 successThreshold: {{ .Values.readiness.successThreshold }}
140 failureThreshold: {{ .Values.readiness.failureThreshold }}
141 startupProbe:
142 tcpSocket:
143 port: {{ .Values.startup.port }}
144 initialDelaySeconds: {{ .Values.startup.initialDelaySeconds }}
145 periodSeconds: {{ .Values.startup.periodSeconds }}
146 timeoutSeconds: {{ .Values.startup.timeoutSeconds }}
147 successThreshold: {{ .Values.startup.successThreshold }}
148 failureThreshold: {{ .Values.startup.failureThreshold }}
sunil unnava49aa92d2018-10-17 16:25:50 -0400149 env:
efiacorfe8f8c92022-03-15 15:36:48 +0000150 - name: JAASLOGIN
151 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "mr-kafka-admin-secret" "key" "sasl.jaas.config") | indent 12 }}
152 - name: SASLMECH
153 value: {{ .Values.global.saslMechanism }}
sunil unnava49aa92d2018-10-17 16:25:50 -0400154 - name: enableCadi
efiacore62958b2019-09-27 16:54:36 +0100155 value: "{{ .Values.global.aafEnabled }}"
Sylvain Desbureauxe5b6ffc2021-02-10 12:11:53 +0100156 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
pramodad6382f2018-03-28 22:32:00 +0000157 - mountPath: /etc/localtime
158 name: localtime
159 readOnly: true
160 - mountPath: /appl/dmaapMR1/bundleconfig/etc/appprops/MsgRtrApi.properties
161 subPath: MsgRtrApi.properties
162 name: appprops
su622bfdce6592019-08-08 00:28:29 -0400163 - mountPath: /appl/dmaapMR1/bundleconfig/etc/logback.xml
164 subPath: logback.xml
165 name: logback
Sylvain Desbureauxf596a2d2021-06-30 15:14:32 +0200166 {{- if .Values.global.aafEnabled }}
Sylvain Desbureauxe5b6ffc2021-02-10 12:11:53 +0100167 - mountPath: /appl/dmaapMR1/etc/runner-web.xml
168 subPath: runner-web.xml
169 name: etc
170 - mountPath: /appl/dmaapMR1/bundleconfig/etc/sysprops/sys-props.properties
171 subPath: sys-props.properties
172 name: sys-props
173 - mountPath: /jetty-config
174 name: jetty
Sylvain Desbureauxf596a2d2021-06-30 15:14:32 +0200175 {{- end }}
Sylvain Desbureauxbe728882020-03-06 08:58:23 +0100176 resources: {{ include "common.resources" . | nindent 12 }}
farida azmy13388ba2021-03-17 11:33:28 +0200177 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Sylvain Desbureauxe5b6ffc2021-02-10 12:11:53 +0100178 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
pramodad6382f2018-03-28 22:32:00 +0000179 - name: localtime
180 hostPath:
181 path: /etc/localtime
182 - name: appprops
183 configMap:
184 name: {{ include "common.fullname" . }}-msgrtrapi-prop-configmap
Sylvain Desbureauxe5b6ffc2021-02-10 12:11:53 +0100185 - name: etc
186 configMap:
187 name: {{ include "common.fullname" . }}-etc
su622bfdce6592019-08-08 00:28:29 -0400188 - name: logback
189 configMap:
190 name: {{ include "common.fullname" . }}-logback-xml-configmap
su622ba3865652020-03-25 17:26:51 -0400191 {{- if .Values.prometheus.jmx.enabled }}
192 - name: jmx-config
193 configMap:
194 name: {{ include "common.fullname" . }}-prometheus-configmap
195 {{- end }}
Sylvain Desbureauxe5b6ffc2021-02-10 12:11:53 +0100196 - name: sys-props
197 configMap:
198 name: {{ include "common.fullname" . }}-sys-props
199 - name: jetty
200 emptyDir: {}
efiacorfe8f8c92022-03-15 15:36:48 +0000201 - name: cluster-operator-certs
202 secret:
203 defaultMode: 288
204 secretName: {{ include "common.release" . }}-strimzi-cluster-operator-certs
205 - name: cluster-ca-certs
206 secret:
207 defaultMode: 288
208 secretName: {{ include "common.release" . }}-strimzi-cluster-ca-cert
pramodad6382f2018-03-28 22:32:00 +0000209 imagePullSecrets:
210 - name: "{{ include "common.namespace" . }}-docker-registry-key"
efiacorfe8f8c92022-03-15 15:36:48 +0000211---
212apiVersion: networking.k8s.io/v1
213kind: NetworkPolicy
214metadata:
215 name: {{ include "common.fullname" . }}-zk-network-policy
216 namespace: {{ include "common.namespace" . }}
217spec:
218 podSelector:
219 matchLabels:
220 strimzi.io/name: {{ include "common.release" . }}-strimzi-zookeeper
221 ingress:
222 - from:
223 - podSelector:
224 matchLabels:
225 app.kubernetes.io/name: {{ include "common.name" . }}
226 ports:
227 - port: {{ .Values.global.zkTunnelService.internalPort }}
228 protocol: TCP
229 policyTypes:
Andreas Geisslere7d56872022-06-22 11:23:11 +0200230 - Ingress