在 GCP 上删除图像 - 无法通过 UI 或 gcloud cli 工作
Delete image on GCP - not working via UI nor via gcloud cli
我是 GCP 中一个项目的所有者,目前我的 Container Registry 中只有一个图像。我正在尝试删除它,但它表明我无权这样做。
知道这是为什么吗?
当尝试 运行 使用 gcloud
删除时,我收到验证错误:
一个潜在的原因是您受到 Container Registry 上当前未解决的问题的影响。无法通过控制台删除图像 UI。
请参阅以下来自 GCP 的消息:
Project owners and editors are currently unable to edit tags or delete
images in the Container Registry UI. The workarounds are to either use
the command line or grant the Storage Object Viewer IAM role. A fix is
expected by December 5th.
在这种情况下,解决方法是使用 gcloud
命令行删除图像:
gcloud container images delete gcr.io/...
注意不要与 gcloud compute images
混淆,后者允许在 Google 云计算上管理 VM 映像。
我是 GCP 中一个项目的所有者,目前我的 Container Registry 中只有一个图像。我正在尝试删除它,但它表明我无权这样做。
知道这是为什么吗?
当尝试 运行 使用 gcloud
删除时,我收到验证错误:
一个潜在的原因是您受到 Container Registry 上当前未解决的问题的影响。无法通过控制台删除图像 UI。
请参阅以下来自 GCP 的消息:
Project owners and editors are currently unable to edit tags or delete images in the Container Registry UI. The workarounds are to either use the command line or grant the Storage Object Viewer IAM role. A fix is expected by December 5th.
在这种情况下,解决方法是使用 gcloud
命令行删除图像:
gcloud container images delete gcr.io/...
注意不要与 gcloud compute images
混淆,后者允许在 Google 云计算上管理 VM 映像。