Single password
SUSE Observability Self-hosted
Last updated
SUSE Observability Self-hosted
Last updated
Out of the box, SUSE Observability is configured with a single password configuration, . This authenticates users with a single, randomly generated password created by the suse-observability-values
chart. The password value can be found as comment in the generated suse-observability-values/templates/baseConfig_values.yaml
.
This setup provisions an admin user with the generated password
This method for providing a password is suited to get started out-of-the-box, but for production one of the other is recommended.
To set an alternative password , add the following line to the values generation command during installation:
It is also possible to set the single password directly in the helm install invocation. This is done by creating a bcrypted string of the required password, using htpasswd -bnBC 10 "" <password> | tr -d ':\n'
or using an online tool. The fill it into the helm invocation or separate values.yaml.
Creating a bcrypted version of a password can be done using htpasswd -bnBC 10 "" <password> | tr -d ':\n'
.
When the single password should come from an external secret, follow but fill in the following data: