0

how can I disable secret creating for elasticsearch? I'm using deployment with Kind: ElasticSearch and I want to use my own password but elastic is still recreating k8s password like elastic: password with name xyz-elastic-user. Is it possible to disable it? I found https://github.com/elastic/helm-charts/blob/main/elasticsearch/values.yaml#L60 but it doesn't work

1 Answer 1

1

you can set custom password through env if you do not want to use the auto-generated one.

extraEnvs:
  - name: ELASTIC_PASSWORD
    value: my-passs

extraEnvs

make sure to set secret false.

secret:
  enabled: false
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.