GCR 使用 CLI 检索无标签图像
GCR using CLI to retrieve tagless images
我知道您可以执行以下操作来检索特定图像的标签列表:
gcloud container images list --repository=gcr.io/myproject
但我想知道我是否也可以使用 gcloud CLI 来检索没有标签的图像。
无标签图像显示在 Google 云控制台 Web 界面中。
解决方案
gcloud container images list-tags gcr.io/myproject/repo --filter='-tags:*'
我想你要找的是 list-tags 子命令:
gcloud container images list-tags --repository=gcr.io/myproject/myrepo
list-tags
会更好地满足您的需求。具体来说,如果您想查看所有图像(包括未标记图像)的信息:
gcloud container images list-tags gcr.io/project-id/repository --format=json
如果您想打印未标记图像的摘要:
gcloud container images list-tags gcr.io/project-id/repository --filter='-tags:*' --format='get(digest)' --limit=$BIG_NUMBER
我知道您可以执行以下操作来检索特定图像的标签列表:
gcloud container images list --repository=gcr.io/myproject
但我想知道我是否也可以使用 gcloud CLI 来检索没有标签的图像。
无标签图像显示在 Google 云控制台 Web 界面中。
解决方案
gcloud container images list-tags gcr.io/myproject/repo --filter='-tags:*'
我想你要找的是 list-tags 子命令:
gcloud container images list-tags --repository=gcr.io/myproject/myrepo
list-tags
会更好地满足您的需求。具体来说,如果您想查看所有图像(包括未标记图像)的信息:
gcloud container images list-tags gcr.io/project-id/repository --format=json
如果您想打印未标记图像的摘要:
gcloud container images list-tags gcr.io/project-id/repository --filter='-tags:*' --format='get(digest)' --limit=$BIG_NUMBER