From e49e14e71c736f9952289b1318ab46da8107fcc5 Mon Sep 17 00:00:00 2001 From: Gilles Mouchet Date: Tue, 21 Oct 2025 13:04:36 +0200 Subject: [PATCH] v3.3.0 - replace https by http --- helm/templates/elasticsearch/create-kibana-user-job.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/templates/elasticsearch/create-kibana-user-job.yaml b/helm/templates/elasticsearch/create-kibana-user-job.yaml index d8821a0..49da9b5 100644 --- a/helm/templates/elasticsearch/create-kibana-user-job.yaml +++ b/helm/templates/elasticsearch/create-kibana-user-job.yaml @@ -29,7 +29,7 @@ spec: echo "user '${KIBANA_USERNAME}' already exists." else echo "creating user '${KIBANA_USERNAME}'..." - curl -s -X POST -u "elastic:{{ required ".Values.elastic.password entry is required!" .Values.elastic.password }}" -H "Content-Type: application/json" https://localhost:9200/_security/user/kibana_system/_password -d "{\"password\" : \"{{ required ".Values.kibana.password entry is required!" .Values.kibana.password }}\"}" + curl -s -X POST -u "elastic:{{ required ".Values.elastic.password entry is required!" .Values.elastic.password }}" -H "Content-Type: application/json" http://localhost:9200/_security/user/kibana_system/_password -d "{\"password\" : \"{{ required ".Values.kibana.password entry is required!" .Values.kibana.password }}\"}" echo "user '${KIBANA_USERNAME}' created." fi envFrom: