- Is this your first time deploying Airbyte?: Yes
- OS Version / Instance: MacOS.
- Memory / Disk: 16Gb / 0.5 Tb
- Deployment: Kubernetes
- Airbyte Version: v0.39.28-alpha
- Source name/version: -
- Destination name/version: -
- Step: The issue is happening while setting up airbyte using helm chart
- Description:
Reason for failure : pod airbyte-bootloader failed
Followed following steps to setup airbyte :
-
Created namespace airbyte :
kubectl create ns airbyte
-
Build helm dependencies :
helm dependency build --debug -n airbyte
LOGS :
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "bitnami" chart repository
Update Complete. ⎈Happy Helming!⎈
Saving 3 charts
Downloading common from repo https://charts.bitnami.com/bitnami
Downloading postgresql from repo https://charts.bitnami.com/bitnami
Downloading minio from repo https://charts.bitnami.com/bitnami
Deleting outdated charts
- Install airbyte :
helm install airbyte -n airbyte . --debug
LOGS :
install.go:178: [debug] Original chart version: ""
install.go:195: [debug] CHART PATH: /Users/somitragupta/factly/airbyte/charts/airbyte
client.go:310: [debug] Starting delete for "airbyte-admin" ServiceAccount
client.go:339: [debug] serviceaccounts "airbyte-admin" not found
client.go:128: [debug] creating 1 resource(s)
client.go:310: [debug] Starting delete for "airbyte-env" ConfigMap
client.go:339: [debug] configmaps "airbyte-env" not found
client.go:128: [debug] creating 1 resource(s)
client.go:310: [debug] Starting delete for "airbyte-postgresql" Secret
client.go:339: [debug] secrets "airbyte-postgresql" not found
client.go:128: [debug] creating 1 resource(s)
client.go:310: [debug] Starting delete for "airbyte-postgresql" Service
client.go:339: [debug] services "airbyte-postgresql" not found
client.go:128: [debug] creating 1 resource(s)
client.go:310: [debug] Starting delete for "airbyte-postgresql" StatefulSet
client.go:339: [debug] statefulsets.apps "airbyte-postgresql" not found
client.go:128: [debug] creating 1 resource(s)
client.go:310: [debug] Starting delete for "airbyte-postgresql-headless" Service
client.go:339: [debug] services "airbyte-postgresql-headless" not found
client.go:128: [debug] creating 1 resource(s)
client.go:310: [debug] Starting delete for "airbyte-secrets" Secret
client.go:339: [debug] secrets "airbyte-secrets" not found
client.go:128: [debug] creating 1 resource(s)
client.go:310: [debug] Starting delete for "airbyte-bootloader" Pod
client.go:339: [debug] pods "airbyte-bootloader" not found
client.go:128: [debug] creating 1 resource(s)
client.go:540: [debug] Watching for changes to Pod airbyte-bootloader with timeout of 5m0s
client.go:568: [debug] Add/Modify event for airbyte-bootloader: ADDED
client.go:627: [debug] Pod airbyte-bootloader pending
client.go:568: [debug] Add/Modify event for airbyte-bootloader: MODIFIED
client.go:627: [debug] Pod airbyte-bootloader pending
client.go:568: [debug] Add/Modify event for airbyte-bootloader: MODIFIED
client.go:627: [debug] Pod airbyte-bootloader pending
client.go:568: [debug] Add/Modify event for airbyte-bootloader: MODIFIED
client.go:629: [debug] Pod airbyte-bootloader running
client.go:568: [debug] Add/Modify event for airbyte-bootloader: MODIFIED
Error: INSTALLATION FAILED: failed pre-install: pod airbyte-bootloader failed
helm.go:84: [debug] failed pre-install: pod airbyte-bootloader failed
INSTALLATION FAILED
main.newInstallCmd.func2
helm.sh/helm/v3/cmd/helm/install.go:127
github.com/spf13/cobra.(*Command).execute
github.com/spf13/cobra@v1.4.0/command.go:856
github.com/spf13/cobra.(*Command).ExecuteC
github.com/spf13/cobra@v1.4.0/command.go:974
github.com/spf13/cobra.(*Command).Execute
github.com/spf13/cobra@v1.4.0/command.go:902
main.main
helm.sh/helm/v3/cmd/helm/helm.go:83
runtime.main
runtime/proc.go:250
runtime.goexit
runtime/asm_amd64.s:1571
- This leads to pod status :
NAME READY STATUS RESTARTS AGE
airbyte-bootloader 0/1 Error 0 18m
airbyte-postgresql-0 0/1 Pending 0 18m
Could someone guide me where exactly I am missing context ?
Thanks in advance.