我正在关注google's image management文档以创建应用程序GCE图像。我正在设置图像系列来从中选择最新的图像。但是,我正在努力获得旧图像的排序列表以进行清理。
gcloud compute images describe-from-family test-packerized-centos7-base
返回最新图片
{
"archiveSizeBytes": "883668032",
"creationTimestamp": "2018-04-25T23:25:36.137-07:00",
"description": "Created by Packer",
"diskSizeGb": "20",
"family": "test-packerized-centos7-base",
"id": "6938962862287932976",
"kind": "compute#image",
"labelFingerprint": "42WmSpB8rSM=",
"licenseCodes": [
"1000207"
],
"name": "wp-centos7-base-bbaelish-shenanigans-3-1524723518",
"selfLink": "https://www.googleapis.com/compute/v1/projects/my_project/global/images/wp-centos7-base-bbaelish-shenanigans-3-1524723518",
"sourceDisk": "https://www.googleapis.com/compute/v1/projects/my_project/zones/us-central1-a/disks/packer-5ae16f3e-13c6-0d93-da79-2f6e81f88fec",
"sourceDiskId": "5923696438202388910",
"sourceType": "RAW",
"status": "READY"
}
但是,当我列出项目中的所有图像并使用姓氏grep时,我可以看到所有旧图像仍处于就绪状态。
gcloud compute images list | grep test-packerized-centos7-base
wp-centos7-base-bbaelish-shenanigans-1-1523048775 test-packerized-centos7-base READY
wp-centos7-base-bbaelish-shenanigans-1-1523050176 test-packerized-centos7-base READY
wp-centos7-base-bbaelish-shenanigans-2-1524258996 test-packerized- centos7-base READY
wp-centos7-base-bbaelish-shenanigans-2-1524259307 test-packerized-centos7-base READY
我知道我必须弃用旧图像,但是我很难获得旧图像的排序列表。我希望将最近5张图片标记为已弃用,之后将3张图片标记为已废弃。
我尝试使用Jq过滤器来获取排序列表。
gcloud compute images list --format json | jq '.[] | select(.family == "test-packerized-centos7-base") | sort_by(.creationTimestamp)'
但是它会返回以下错误
jq: error (at <stdin>:4622): Cannot index string with string "creationTimestamp"
任何人都知道简单的方法来获取#34;图像家族&#34;中的旧图像列表。 我假设谷歌正在维护某个地方的订单,因为当我删除该系列中的最新图像时,它会自动指向较旧的图像。
答案 0 :(得分:0)
如果要对图像列表进行排序,则必须运行gcloud images list
命令并应用specific filters以按日期对图像进行排序。
您必须运行的command是:
$ gcloud compute images list --format="value(NAME)" --filter="[sorting-filter]"
[sorting-filter]
的过滤器将按创建日期对图像进行排序。
有关如何编写过滤器以及如何使用过滤器的帮助,请查阅此Google Cloud documentation。基本上,您只需要找到合适的过滤器即可。由于它是一个特定的过滤器,并且问题实际上是您的用例所特有的,因此您必须通读文档。
答案 1 :(得分:0)
我希望这能回答您的查询。当您尝试基于“创建时间”获取图像列表时,可以在下面使用此命令。
gcloud compute images list --format="table(name,creationTimestamp.date(tz=LOCAL))"
但是,如果您尝试根据名称对它进行进一步排序,则可以使用grep。