Ali Kelkawi
05/28/2024, 12:10 PMkapa.ai
05/28/2024, 12:10 PMyaml logs: externalMinio: enabled: true host: your-minio-host port: 9000 endpoint: <http://your-minio-endpoint> s3: enabled: false bucket: your-s3-bucket bucketRegion: ""
Additionally, you might need to set the following environment variables in your deployment configuration: yaml extraEnv: - name: S3_MINIO_ENDPOINT value: "<http://your-minio-endpoint>" - name: AWS_ACCESS_KEY_ID value: "your-minio-access-key" - name: AWS_SECRET_ACCESS_KEY value: "your-minio-secret-key"
For more detailed information, you can refer to the [Airbyte documentation on Kubernetes deployment](https://docs.airbyte.com/deploying-airbyte/on-kubernetes#configure-logs). References: - [Forum Post: Worker process of Airbyte > v0.40.9 fails to start on custom S3 config](https://discuss.airbyte.io/t/2849) - [Forum Post: Invalid Access Key for Source Connecter s3](https://discuss.airbyte.io/t/1669)Ali Kelkawi
05/28/2024, 12:38 PMkapa.ai
05/28/2024, 12:38 PMglobal.logs.minio.enabled
was still in the configuration but was deemed useless ([source](https://github.com/airbytehq/airbyte/issues/36826)). 2. Issue #34512 indicates that users faced sync errors when using external Minio with Helm Chart version 0.50.44. The error was related to the S3_LOG_BUCKET_REGION
environment variable, and users had to add global.logs.s3.bucketRegion
to their values.yaml
to resolve it ([source](https://github.com/airbytehq/airbyte/issues/34512)). 3. Issue #34539 suggests using the default Minio for now, as there is ongoing work to improve the existing chart ([source](https://github.com/airbytehq/airbyte/issues/34539)). Given these points, it seems that while external Minio might still be configurable, there have been significant issues and changes in the Helm charts that could affect its functionality. The recommendation from the development team is to use the default Minio for now due to ongoing improvements. Therefore, it is not explicitly stated that external Minio is no longer supported in version 0.57.3, but there are known issues and limitations that might make it challenging to use. For the most reliable setup, it is advisable to follow the latest recommendations and possibly use the default Minio until the improvements are released. For more detailed and up-to-date information, you might want to follow the related issues on GitHub: - [Issue #36826](https://github.com/airbytehq/airbyte/issues/36826) - [Issue #34512](https://github.com/airbytehq/airbyte/issues/34512) - [Issue #34539](https://github.com/airbytehq/airbyte/issues/34539)