From a204ddd82b7293df87201855bc466b60ba1d651b Mon Sep 17 00:00:00 2001 From: Chakra Date: Wed, 23 Nov 2022 23:51:55 +0000 Subject: [PATCH] set protocol to http https://github.com/elastic/helm-charts/tree/main/elasticsearch#configuration says default value of protocol as http protocol The protocol that will be used for the readiness probe. Change this to https if you have xpack.security.http.ssl.enabled --- elasticsearch/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch/values.yaml b/elasticsearch/values.yaml index 4143d619c..6c457fce2 100644 --- a/elasticsearch/values.yaml +++ b/elasticsearch/values.yaml @@ -187,7 +187,7 @@ podManagementPolicy: "Parallel" # If you experience slow pod startups you probably want to set this to `false`. enableServiceLinks: true -protocol: https +protocol: http httpPort: 9200 transportPort: 9300