how can I set default credentials on abctl local i...
# ask-ai
a
how can I set default credentials on abctl local install
u
To set default credentials when installing Airbyte locally using
abctl
, you can use the
credentials
command with
abctl
. Here's how you can do it: 1. To set your email, you can run:
Copy code
bash abctl local credentials --email [email protected]
2. To set your password, you can run:
Copy code
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:
Copy code
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:
Copy code
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)