From 7e518da638b134ddee6e367c966eb9241446b703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Wed, 28 Sep 2022 11:00:38 +0300 Subject: [PATCH] elastic-system: Make Kibana healthcheck work with anonymous auth --- elastic-system/application.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/elastic-system/application.yml b/elastic-system/application.yml index d5e2e3f..90724a4 100644 --- a/elastic-system/application.yml +++ b/elastic-system/application.yml @@ -264,6 +264,20 @@ spec: entries: - key: elastic path: xpack.security.authc.providers.anonymous.anonymous1.credentials.password + podTemplate: + spec: + containers: + - name: kibana + readinessProbe: + httpGet: + path: /app/home + port: 5601 + scheme: HTTP + initialDelaySeconds: 10 + timeoutSeconds: 5 + periodSeconds: 10 + successThreshold: 1 + failureThreshold: 3 --- apiVersion: networking.k8s.io/v1 kind: Ingress