What versions of helm are supported by aws eks?
# ask-ai
u
What versions of helm are supported by aws eks?
k
Hmm, I don't know enough to give you a confident answer yet. For detailed information on supported Helm versions by AWS EKS, you might want to refer to the official AWS EKS documentation or the Helm documentation. For more information, you can visit: - [AWS EKS Documentation](https://docs.aws.amazon.com/eks/latest/userguide/what-is-eks.html) - [Helm Documentation](https://helm.sh/docs/) If you have any questions specifically about deploying Airbyte on AWS EKS using Helm, feel free to ask!
u
@kapa.ai
Copy code
How compatible is the version of helm provided by airbyte on aws eks?
k
The compatibility of the Airbyte Helm chart on AWS EKS has been a topic of discussion and troubleshooting among users. Here are some key points based on the provided knowledge sources: 1. Version Compatibility Issues: - Users have reported various issues with different versions of the Airbyte Helm chart on AWS EKS. For instance, one user faced deployment failures with Helm version
0.43.24
([source](https://discuss.airbyte.io/t/3825)). - Another user successfully deployed Airbyte using Helm chart version
0.45.11
after facing issues with other versions ([source](https://discuss.airbyte.io/t/4393)). 2. Common Errors and Solutions: - Issues such as database connection failures and volume binding timeouts have been reported during deployment ([source](https://discuss.airbyte.io/t/3825)). - A workaround for some issues involved using
existingSecret
and
existingSecretKey
keys instead of plain passwords ([source](https://github.com/airbytehq/airbyte/issues/27901)). 3. Helm Chart Configuration: - It's important to specify the correct version in the Helm chart manifest to ensure consistency across deployments. For example, setting the version explicitly in the values file:
Copy code
yaml      version: "0.50.11"      global:        image:          tag: "0.50.11"
([source](https://github.com/airbytehq/airbyte/discussions/32349)). 4. Recent Issues: - There have been recent issues with S3 authentication using instance profiles, which were working previously but started failing with newer Helm chart versions ([source](https://github.com/airbytehq/airbyte/issues/37677)). In summary, while Airbyte's Helm charts are generally compatible with AWS EKS, users have encountered various issues depending on the specific version used. It is advisable to: - Use a tested and stable version of the Helm chart. - Explicitly set the version in your Helm values file. - Refer to the Airbyte community discussions and GitHub issues for troubleshooting tips and solutions. For more detailed information, you can refer to the following sources: - [Forum Post on Deployment Issues](https://discuss.airbyte.io/t/3825) - [GitHub Issue on Helm Chart Compatibility](https://github.com/airbytehq/airbyte/issues/27901) - [Discussion on Specifying Airbyte Version](https://github.com/airbytehq/airbyte/discussions/32349) - [Forum Post on Successful Deployment](https://discuss.airbyte.io/t/4393) - [GitHub Issue on S3 Authentication](https://github.com/airbytehq/airbyte/issues/37677)