From 19b5ebec31782226f5d9b269a088f125792c3a5d Mon Sep 17 00:00:00 2001 From: John Mazzitelli Date: Fri, 20 Dec 2024 16:35:20 -0500 Subject: [PATCH] explicitly set metrics bind address to 8080 the default value used to be 8080 but in ansible operator 1.36.0, that default was changed to 8443. So we need to explicitly set it 8080 now. --- kiali-operator/templates/deployment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/kiali-operator/templates/deployment.yaml b/kiali-operator/templates/deployment.yaml index 923055b..bd99ece 100644 --- a/kiali-operator/templates/deployment.yaml +++ b/kiali-operator/templates/deployment.yaml @@ -51,6 +51,7 @@ spec: - "--leader-election-id={{ include "kiali-operator.fullname" . }}" - "--watches-file=./$(WATCHES_FILE)" - "--health-probe-bind-address=:6789" + - "--metrics-bind-address=:8080" terminationMessagePolicy: FallbackToLogsOnError readinessProbe: httpGet: