Summary
The user is facing issues deploying Airbyte on Kubernetes with S3 storage configuration. They are encountering an ‘Internal Server Error’ related to connecting to the MinIO service. The user has shared their values.yaml file and Terraform configuration.
Question
Guys, I need help.
I’ve been trying to deploy Airbyte in a productive Kubernetes environment for two days now and I’m not succeeding.
I have already faced several challenges, now I am trying to configure MiniO as it is not working. So, I decided to go for the approach of using S3, but I configure everything and simply when testing a destination or source this error message appears.
I’m using chart version “0.50.13”
Internal Server Error: Unable to execute HTTP request: Connect to airbyte-minio-svc:9000 [airbyte-minio-svc/ip-private] failed: Connection refused
Could anyone help me?
values.yaml
storage:
type: "S3"
storageSecretName: airbyte-config-secrets
bucket:
log: airbyte-workload-bucket
state: airbyte-workload-bucket
workloadOutput: airbyte-workload-bucket
s3:
region: "us-east-1"
authenticationType: credentials```
terraform
```resource "helm_release" "airbyte" {
count = var.is_airbyte ? 1 : 0
chart = "airbyte"
name = var.name
namespace = var.namespace
create_namespace = true
repository = "<https://airbytehq.github.io/helm-charts>"
version = var.airbyte_version
values = [file("airbyte.yaml")]
set {
name = "externalDatabase.host"
value = module.postgresql.db_instance_address
}
set {
name = "externalDatabase.password"
value = var.password == "" ? join("", random_password.password.*.result) : var.password
}
set {
name = "minio.enabled"
value = "false"
}
set {
name = "s3.enabled"
value = "true"
}
set {
name = "storage.type"
value = "S3"
}
depends_on = [module.postgresql]
}```
<br>
---
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. [Click here](https://airbytehq.slack.com/archives/C021JANJ6TY/p1723496766609629) if you want
to access the original thread.
[Join the conversation on Slack](https://slack.airbyte.com)
<sub>
["kubernetes", "s3-storage", "airbyte", "minio", "internal-server-error", "helm-chart", "terraform"]
</sub>