This is an automated email from the ASF dual-hosted git repository. tzulitai pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink-statefun.git
commit 219148f1437beda77f669eb18bbd66c550d484e0 Author: Igal Shilman <[email protected]> AuthorDate: Tue Mar 31 21:53:40 2020 +0200 [FLINK-16898] Use the correct port for liveness checks This closes #84. --- tools/k8s/templates/worker-deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/k8s/templates/worker-deployment.yaml b/tools/k8s/templates/worker-deployment.yaml index ecdfb84..1ed8d1e 100644 --- a/tools/k8s/templates/worker-deployment.yaml +++ b/tools/k8s/templates/worker-deployment.yaml @@ -41,7 +41,7 @@ spec: requests: memory: "{{ .Values.worker.container_mem }}" ports: - - containerPort: 6123 + - containerPort: 6122 name: rpc - containerPort: 6124 name: blob @@ -49,7 +49,7 @@ spec: name: ui livenessProbe: tcpSocket: - port: 6123 + port: 6122 initialDelaySeconds: 30 periodSeconds: 60 volumeMounts:
