File size: 491 Bytes
346127e | 1 2 3 4 5 6 7 8 9 10 11 12 | # Copy to lab/.env and set your own passwords. lab/.env is gitignored — never commit it.
# deploy.sh reads these and creates the k8s Secret `es-bench-credentials` from them.
# Elasticsearch superuser (admin). Keep this private.
ELASTIC_PASSWORD=change-me-admin
# Internal user Kibana uses to talk to ES. Keep this private.
KIBANA_SYSTEM_PASSWORD=change-me-kibana
# Read-only demo account. This one is meant to be shared publicly (put it in your README).
BENCHMARK_RO_PASSWORD=benchmark
|