diff options
author | Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> | 2024-04-05 06:52:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-04-05 06:52:27 +0000 |
commit | f1a3f7f6d93d070d1f733af8eb116e3ea8f76704 (patch) | |
tree | 4a3ea26f7adcbc53769cf1eb33f2c7aa7346a776 /kubernetes/dmaap/components/message-router/templates | |
parent | 6d5a8690d675f65a8ec38b2c03f6fde2c2d2d9b8 (diff) | |
parent | 54ee982a1df59b2ad66ff07c3507e6ef5f638647 (diff) |
Merge "[STRIMZI] Update strimzi-kafka-operator and kafka versions"
Diffstat (limited to 'kubernetes/dmaap/components/message-router/templates')
-rw-r--r-- | kubernetes/dmaap/components/message-router/templates/statefulset.yaml | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/kubernetes/dmaap/components/message-router/templates/statefulset.yaml b/kubernetes/dmaap/components/message-router/templates/statefulset.yaml index 399e54f75a..74832848bb 100644 --- a/kubernetes/dmaap/components/message-router/templates/statefulset.yaml +++ b/kubernetes/dmaap/components/message-router/templates/statefulset.yaml @@ -34,15 +34,13 @@ spec: ports: {{ include "common.containerPorts" . | nindent 10 }} {{- if eq .Values.liveness.enabled true }} livenessProbe: - httpGet: - path: /events/__strimzi-topic-operator-kstreams-topic-store-changelog/CG1/C1 + tcpSocket: port: {{ .Values.liveness.port }} - scheme: HTTP - failureThreshold: {{ .Values.liveness.failureThreshold }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} - successThreshold: {{ .Values.liveness.successThreshold }} timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} + successThreshold: {{ .Values.liveness.successThreshold }} + failureThreshold: {{ .Values.liveness.failureThreshold }} {{ end }} readinessProbe: tcpSocket: @@ -53,15 +51,13 @@ spec: successThreshold: {{ .Values.readiness.successThreshold }} failureThreshold: {{ .Values.readiness.failureThreshold }} startupProbe: - httpGet: - path: /events/__strimzi-topic-operator-kstreams-topic-store-changelog/CG1/C1 - port: {{ .Values.startup.port }} - scheme: HTTP - failureThreshold: {{ .Values.startup.failureThreshold }} + tcpSocket: + port: {{ .Values.startup.port }} initialDelaySeconds: {{ .Values.startup.initialDelaySeconds }} periodSeconds: {{ .Values.startup.periodSeconds }} - successThreshold: {{ .Values.startup.successThreshold }} timeoutSeconds: {{ .Values.startup.timeoutSeconds }} + successThreshold: {{ .Values.startup.successThreshold }} + failureThreshold: {{ .Values.startup.failureThreshold }} env: - name: JAASLOGIN valueFrom: |