添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

We are running airbyte on GKE. To access Airbyte Workspace directories, we put this command for Kubernetes:
kubectl exec -it pod name -n namespace pod is in -c main bash "
But when we type that, we see the following error: cannot exec into a container in a completed pod; current phase is Succeeded .
If the state switches to Succeeded, we are unable to access pods. Is there a different way to access the Airbyte workspace using GKE?
Please advise

Hey @prateek ,

Thanks for the question. I believe that if the pod has completed and entered the Succeeded state, it means that the container has finished running and is no longer available to be accessed via kubectl exec .

To access the Airbyte workspace directories in a completed pod, you can create a Kubernetes volume snapshot of the pod’s volumes and restore it to a new pod. You can then access the restored volumes using kubectl exec .

hey @sajarin
When trying to build a volume snapshot for a completed pod, we see two pvc names to pick from when entering the PersistentVolumeClaim:
airbyte-minio-pv-claim-airbyte-minio-0
airbyte-volume-db-airbyte-db-0
image (1) 1273×110 28.6 KB Please advise which is the correct choice.