Issue deploying abctl on EC2 (AWS)

Summary

User is encountering an issue when trying to deploy abctl on EC2 in AWS, specifically related to a Pod failing with the error ‘ImagePullBackOff’.


Question

Has anyone successfully deployed abctl on EC2 (AWS)?
I am running into this issue when trying to fo a local install:
This is where EC2 Fails in AWS? Thoughts?
Encountered an issue deploying Airbyte:
Pod: airbyte-abctl-connector-builder-server-7f7498b9d5-qkqld.17e9886ba6fd5124
Reason: Failed
Message: Error: ImagePullBackOff
Count: 6 (edited)



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

["abctl", "ec2", "aws", "pod", "imagepullbackoff"]

abctl local install on EC2 instance worked fine for me 2 days ago.

It looks like for some reason Docker image cannot be pulled from registry.
You can try to debug what is the problem.

abctl uses kind (https://kind.sigs.k8s.io/) under the hood

install kubectl (https://kubernetes.io/docs/tasks/tools/#kubectl) and kubectx + kubens (https://github.com/ahmetb/kubectx)
install also 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```
now you can check pods
`kubectl describe pods` or with `k9s`