Wasim Bagwan
10/21/2024, 9:15 AMuser
10/21/2024, 9:16 AMv0.58.0
or newer and Postgres v9.3.x or above for non-CDC workflows and Postgres v10 or above for CDC workflows. If you're still facing issues, it would be best to report this on the Airbyte Github issues page or the Airbyte forum for further assistance.Wasim Bagwan
10/21/2024, 9:18 AMuser
10/21/2024, 9:19 AMuser
10/21/2024, 9:19 AMhelm upgrade
command to upgrade your Airbyte deployment. Here's an example command: bash helm upgrade --install <RELEASE-NAME> airbyte/airbyte --values <VALUE.YAML> --version <HELM-APP-VERSION>
Replace <RELEASE-NAME>
, <VALUE.YAML>
, and <HELM-APP-VERSION>
with your specific release name, values file, and Helm app version respectively. Please note that the upgrade process might take a few minutes. After the upgrade, Helm will print a message showing how to port-forward Airbyte. This process is described in the [Airbyte documentation](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-k8s-using-helm). If you're still facing issues, it would be best to report this on the Airbyte Github issues page or the Airbyte forum for further assistance.Wasim Bagwan
10/21/2024, 9:52 AMuser
10/21/2024, 9:52 AMuser
10/21/2024, 9:53 AMWasim Bagwan
10/21/2024, 10:08 AMuser
10/21/2024, 10:08 AMuser
10/21/2024, 10:09 AMabctl
, you can run the following command: bash abctl local credentials
This should output something similar to: bash { "password": "password", "client-id": "client_id", "client-secret": "client_secret" }
If you have deployed to your own Kubernetes cluster using Helm, then you can view your credentials by running the following command: bash kubectl get secret airbyte-auth-secrets -n <YOUR_NAMESPACE> -o yaml
This will return something similar to: bash apiVersion: v1 data: instance-admin-client-id: Y2Q1ZTc4ZWEtMzkwNy00ZThmLWE1ZWMtMjIyNGVhZTFiYzcw instance-admin-client-secret: cmhvQkhCODlMRmh1REdXMWt3REpHZTJMaUd3N3c2MjU= instance-admin-password: d0V2bklvZEo1QUNHQnpPRWxrOWNSeHdFUGpJMWVzMWg= kind: Secret metadata: creationTimestamp: "2024-07-31T04:22:54Z" name: airbyte-auth-secrets namespace: airbyte-abctl resourceVersion: "600" uid: f47170eb-f739-4e58-9013-b7afb3ac336a type: Opaque
These values are base64 encoded, to decode your password run the following command: bash echo 'cmhvQkhCODlMRmh1REdXMWt3REpHZTJMaUd3N3c2MjU=' | base64 -d
This information is based on the [Airbyte documentation](https://docs.airbyte.com/deploying-airbyte/integrations/authentication).Wasim Bagwan
10/21/2024, 10:12 AMuser
10/21/2024, 10:12 AMuser
10/21/2024, 10:12 AMbash kubectl get secret airbyte-auth-secrets -n <YOUR_NAMESPACE> -o yaml
This will return something similar to: bash apiVersion: v1 data: instance-admin-client-id: Y2Q1ZTc4ZWEtMzkwNy00ZThmLWE1ZWMtMjIyNGVhZTFiYzcw instance-admin-client-secret: cmhvQkhCODlMRmh1REdXMWt3REpHZTJMaUd3N3c2MjU= instance-admin-password: d0V2bklvZEo1QUNHQnpPRWxrOWNSeHdFUGpJMWVzMWg= kind: Secret metadata: creationTimestamp: "2024-07-31T04:22:54Z" name: airbyte-auth-secrets namespace: airbyte-abctl resourceVersion: "600" uid: f47170eb-f739-4e58-9013-b7afb3ac336a type: Opaque
These values are base64 encoded. To decode your password, run the following command: bash echo 'd0V2bklvZEo1QUNHQnpPRWxrOWNSeHdFUGpJMWVzMWg=' | base64 -d
Replace 'd0V2bklvZEo1QUNHQnpPRWxrOWNSeHdFUGpJMWVzMWg='
with the instance-admin-password
value from your secret. The decoded value is the password you can use to log in to the Airbyte console. The email should be the one you provided during the setup process. If you don't remember the email, you can set a new one using the abctl
tool with the following command: bash abctl local credentials --email <[[email protected]]>
Replace <[[email protected]]>
with your email address. This information is based on the [Airbyte documentation](https://docs.airbyte.com/deploying-airbyte/integrations/authentication).Wasim Bagwan
10/21/2024, 12:18 PMuser
10/21/2024, 12:19 PMuser
10/21/2024, 12:19 PMWasim Bagwan
11/14/2024, 6:39 PMuser
11/14/2024, 6:39 PMuser
11/14/2024, 6:39 PM