Hi,
For configuring Elastic Cloud on Kubernetes (ECK), I tried following the instructions on this link: https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-operator-config.html
I would like to change some of the default values using "environment variables". Can you please clarify where should I configure these? Am I supposed to change the all-in-one.yaml definition of the statefulset? Are those variables supposed to be added to the "values.yaml" of a helm chart? and if so, how? I tried in the values.yaml with either:
env:
- name: AUTO_PORT_FORWARD
value: false
- name: OPERATOR_NAMESPACE
value: sebas-elastic
and
AUTO_PORT_FORWARD: false
OPERATOR_NAMESPACE: sebas-elastic
I would rather not to change the CRD definition nor use flags during command line deployment (i don't deploy using CLI, but a gitops system instead).
Thank you.