-
Notifications
You must be signed in to change notification settings - Fork 100
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
Push images to gce #3213
Push images to gce #3213
Conversation
ab836ca
to
e9a83f9
Compare
eb0c371
to
a02eacb
Compare
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.
Nice!
So what I get from this is that there is no regions on GCE then? Uploading an image makes it available everywhere? |
there are "locations" but images are a global resource: https://cloud.google.com/sdk/gcloud/reference/compute/images/list (no mention of location anywhere) |
https://cloud.google.com/compute/docs/images/managing-access-custom-images |
I can't find a way to search for images in the UI. The only thing that works (which matches the limitation mentioned in the above comment) is to manually point to the image in the command line:
This requires the user to know the full image "path". If we can't find any better way, we should just make sure our documentation always points to the current public image. 🤷 Strange UX from google. |
https://cloud.google.com/sdk/gcloud/reference/compute/images/import We should try "global" or "asia,eu,us" according to chatgpt. Let's see. |
Signed-off-by: Dimitris Karakasilis <[email protected]>
Signed-off-by: Dimitris Karakasilis <[email protected]>
to avoid latency when using the images (and egress charges when it has to be used from other locations). https://cloud.google.com/sdk/gcloud/reference/compute/images/import Signed-off-by: Dimitris Karakasilis <[email protected]>
"storage-location" is an argument of the "gcloud compute images import" command not "gcloud compute images import This reverts commit cb28e41.
2ba584a
to
4f27f13
Compare
"storage-location" is an argument of the "gcloud compute images import" command not "gcloud migration vms image-imports create" . Images are a global resource anyway and only latency and costs are different by adding more regions/zones/locations/whatever. |
Fixes #3147
What this PR does / why we need it:
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #