Summary
The user tried to set a default password via k8s secret.yaml for Airbyte authentication but encountered an issue where the specified password was not used and a randomly generated one was used instead.
Question
I tried to set my own default password through k8s secret.yaml
like <Authentication | Airbyte Documentation here>
secret.yaml
:
kind: Secret
metadata:
name: airbyte-auth-secrets
type: Opaque
stringData:
instance-admin-password: "1234567"
# Override these if you want to access the API with known credentials
#instance-admin-client-id: # my-client-id
#instance-admin-client-secret: # my-client-secret```
and `auth` section in `values.yaml`:
```# -- Auth configuration
auth:
# -- Whether auth is enabled
enabled: true
# -- Admin user configuration
instanceAdmin:
# -- Secret name where the instanceAdmin configuration is stored
secretName: "airbyte-auth-secrets"
# -- The first name of the initial user
firstName: ""
# -- The last name of the initial user
lastName: ""
# -- The key within `emailSecretName` where the initial user's email is stored
emailSecretKey: "instance-admin-email"
# -- The key within `passwordSecretName` where the initial user's password is stored
passwordSecretKey: "instance-admin-password"```
but it failed to use the specified password but a random generated one
<br>
---
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. [Click here](https://airbytehq.slack.com/archives/C021JANJ6TY/p1724180633419719) if you want
to access the original thread.
[Join the conversation on Slack](https://slack.airbyte.com)
<sub>
["k8s", "secret.yaml", "authentication", "password", "airbyte", "platform", "bug"]
</sub>