Hello guys, I'm trying to install airbyte in my k8...
# kubernetes
l
Hello guys, I'm trying to install airbyte in my k8s using helm chart, but I got this error, could anyone help me, please ? I'm using all default configs and this command `helm install --generate-name . -n airbyte`:
Copy code
Error: template: airbyte/templates/worker/deployment.yaml:63:23: executing "airbyte/templates/worker/deployment.yaml" at <include "airbyte.database.secret.name" .>: error calling include: template: airbyte/templates/_helpers.tpl:90:50: executing "airbyte.database.secret.name" at <.Subcharts.postgresql>: nil pointer evaluating interface {}.postgresql
helm.go:81: [debug] template: airbyte/templates/worker/deployment.yaml:63:23: executing "airbyte/templates/worker/deployment.yaml" at <include "airbyte.database.secret.name" .>: error calling include: template: airbyte/templates/_helpers.tpl:90:50: executing "airbyte.database.secret.name" at <.Subcharts.postgresql>: nil pointer evaluating interface {}.postgresql
m
It’s expecting a postgres database name and the value is null, check the chart values
l
Yeah, but the unique value about this parameter in values.yaml is not null:
postgresqlDatabase: db-airbyte
g
I had this problem a few days ago. IIRC, it was because the chart is trying to use
.Subcharts
and the helm version is < 3.7. In my case it was for a temporary setup, so I installed the database separately (Saved waiting for ops to perform the upgrade. We use fluxcd).
(PS: I still can't find any docs about this new(?)
.Subcharts
feature) 🤷
l
Thank you @Gary KI updated my helm version and now this error is gone
Now Its time to find the right config to do the inital deploy 😃