-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use docker push for non-gcr images #520
Conversation
/assign @mwielgus @MaciekPytel |
cluster-autoscaler/push_image.sh
Outdated
@@ -20,15 +20,21 @@ if [ -z $IMAGE_TO_PUSH ]; then | |||
exit 1 | |||
fi | |||
|
|||
if [[ "${IMAGE_TO_PUSH}" == "gcr.io/"* ]]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Handle k8s.gcr.io
as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See #512
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mwielgus Thanks. Fixed in latest commit. PTAL
/lgtm |
…istently Configure timeouts for the ExpectWorkloadsToBeAdmitted as in other util functions
For images not hosted on gcr.io, we should use
docker push
instead ofgcloud docker -- push
.