On pushing to astronomer docker registry - received unexpected HTTP status: 500 Internal Server Error

Hi,

I’m following the guide here. https://www.astronomer.io/docs/cloud/stable/deploy/ci-cd. This is for circle ci. I’m using astronomer cloud. The docker build and login was success. However, when I try to push it to the registry, I get internal server error 500. any help is appreciated.

Login Succeeded
The push refers to a repository [registry.gcp0001.us-east4.astronomer.io/namehereredacted/airflow]
4b7ed881: Preparing
52f353a6: Preparing
64eac08b: Preparing
b757e359: Preparing
009e8b34: Preparing
660ff75c: Preparing
4e0a6dec: Preparing
0dc84b7ed881: Retrying in 2 seconds
b134b757e359: Retrying in 1 second
0dc84b7ed881: Retrying in 1 second
received unexpected HTTP status: 500 Internal Server Error

Exited with code exit status 1

Since you are using docker to push new images to your deployment, I would suggest reading our documentation on deploying through CI/CD.

TAG=<tag>
docker build -t registry.gcp0001.us-east4.astronomer.io/<release-name>/airflow:$TAG .
docker login registry.gcp0001.us-east4.astronomer.io -u _ -p $SERVICE_ACCOUNT_KEY
docker push registry.gcp0001.us-east4.astronomer.io/<release-name>/airflow:$TAG