Antoine LENOIR
09/24/2024, 4:12 PMuser
09/24/2024, 4:12 PMabctl
, you can use the credentials
command with abctl
. Here's how you can do it: 1. To set your email, you can run: bash abctl local credentials --email [email protected]
2. To set your password, you can run: bash abctl local credentials --password new_password
Please replace [email protected]
and new_password
with your actual email and desired password. Additionally, you can control the default password by supplying your own values as a Kubernetes secret. You can create a file called secret.yaml
and add the following Kubernetes Secret into that file: yaml apiVersion: v1 kind: Secret metadata: name: airbyte-auth-secrets type: Opaque stringData: instance-admin-password: # password
Then, if you are deploying Airbyte with abctl
, you can run: bash abctl local install --secret secret.yaml
Sources: - [Run Airbyte](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#2-run-airbyte) - [Setting a Password via Secrets](https://docs.airbyte.com/deploying-airbyte/integrations/authentication#setting-a-password-via-secrets)