Summary
Error message indicates failure to install Airbyte Helm Chart locally with a context deadline exceeded
Question
After 1h it fails miserably. Have you ever seen this error before?
ERROR Failed to install airbyte/airbyte Helm Chart
ERROR Unable to install Airbyte locally
ERROR unable to install airbyte chart: unable to install helm: context deadline exceeded
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want
to access the original thread.
Join the conversation on Slack
["error", "installing", "airbyte-helm-chart", "context-deadline-exceeded"]
for debugging
install kind https://kind.sigs.k8s.io/docs/user/quick-start/#installation and check logs
kind export logs --name=airbyte-abctl kind-logs
in kind-logs
directory you will find all the logs
Hard to say where lies the problem. Maybe something with pulling images or something completely different.
you can also debug your problem with k9s
Install kubectl (https://kubernetes.io/docs/tasks/tools/#kubectl) and kubectx + kubens (https://github.com/ahmetb/kubectx) and k9s (https://k9scli.io/)
then execute commands:
KUBECONFIG=~/.airbyte/abctl/abctl.kubeconfig kubectl config view --flatten > ~/.kube/config
kubectx kind-airbyte-abctl
kubens airbyte-abctl
k9s```
with k9s you can faster which pods are not running, their logs, etc.