Simon Veerman
10/19/2024, 11:44 AMuser
10/19/2024, 11:44 AMDEFAULT_MINIO_ACCESS_KEY
is not found in the Kubernetes secret airbyte-abctl-airbyte-secrets
. This issue was also reported in a [Github issue](https://github.com/airbytehq/airbyte/issues/39604) where the user was unable to find the DATABASE_USER
key in the secret. The user in the Github issue found a workaround by patching the Kubernetes secret to add the missing key immediately after deployment. Here's the command they used: shell kubectl patch secret airbyte-airbyte-secrets \ --namespace=production-hm-airbyte \ --patch="{\"stringData\":{\"DATABASE_USER\":\"airbyte_user\"}}"
You can try a similar approach for your issue. Replace DATABASE_USER
with DEFAULT_MINIO_ACCESS_KEY
and airbyte_user
with the actual value of your MinIO access key. Also, replace production-hm-airbyte
with airbyte-abctl
which is your namespace. Please note that this is a workaround and it would be better to understand why the key is not being added to the secret during the deployment. You might want to check your values.yaml
file and ensure that it's correctly configured. You can refer to the [Airbyte documentation](https://docs.airbyte.com/using-airbyte/getting-started/oss-quickstart#customizing-your-installation-with-a-values-file) for more details on how to customize your installation with a values.yaml
file. If the issue persists, I recommend raising an issue in the [Airbyte Github repository](https://github.com/airbytehq/airbyte/issues) for further assistance.Simon Veerman
10/19/2024, 12:01 PMuser
10/19/2024, 12:01 PMuser
10/19/2024, 12:02 PMSimon Veerman
10/19/2024, 12:07 PMuser
10/19/2024, 12:07 PMuser
10/19/2024, 12:07 PM