diff --git a/helm/templates/elasticsearch/create-kibana-user-job.yaml b/helm/templates/elasticsearch/create-kibana-user-job.yaml index 1615b38..d8821a0 100644 --- a/helm/templates/elasticsearch/create-kibana-user-job.yaml +++ b/helm/templates/elasticsearch/create-kibana-user-job.yaml @@ -29,14 +29,6 @@ spec: echo "user '${KIBANA_USERNAME}' already exists." else echo "creating user '${KIBANA_USERNAME}'..." -# curl -u ${ELASTIC_USERNAME}:${ELASTIC_PASSWORD} -X POST http://service-elasticsearch:9200/_security/user/${KIBANA_USERNAME} \ -# -H "Content-Type: application/json" \ -# -d "{ -# \"password\": \"${KIBANA_PASSWORD}\", -# \"roles\": [\"kibana_system\"], -# \"full_name\": \"Kibana System User\", -# \"enabled\": true -# }" 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 }}\"}" echo "user '${KIBANA_USERNAME}' created." fi