From ec0a46409be9e3fb7a1e0ce62a832545fe0d0a25 Mon Sep 17 00:00:00 2001 From: desmax74 Date: Wed, 4 Dec 2024 15:01:24 +0100 Subject: [PATCH] Fix port and workaround to skip certificate validation Signed-off-by: desmax74 --- .../manifests/guac/graphql/Deployment.yaml.j2 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/roles/tpa_single_node/templates/manifests/guac/graphql/Deployment.yaml.j2 b/roles/tpa_single_node/templates/manifests/guac/graphql/Deployment.yaml.j2 index 5cc9e9f..be754fb 100644 --- a/roles/tpa_single_node/templates/manifests/guac/graphql/Deployment.yaml.j2 +++ b/roles/tpa_single_node/templates/manifests/guac/graphql/Deployment.yaml.j2 @@ -69,10 +69,12 @@ spec: scheme: HTTPS livenessProbe: initialDelaySeconds: {{ tpa_single_node_probe_initial_delay_seconds }} - httpGet: - path: /healthz - port: 9010 - scheme: HTTPS + livenessProbe: + exec: + command: + - /bin/curl + - -kf + - 'https://localhost:8089/healthz' ports: - containerPort: 9010 protocol: TCP