Google Compute Engine:获取与Google Compute Engine虚拟机实例关联的特定数据

时间:2015-12-08 10:44:19

标签: google-compute-engine google-cloud-platform

我使用以下命令显示与Google Compute Engine虚拟机实例关联的所有数据。

  

gcloud compute instances describe <instance>

我只想要“标签”,“机器类型”等特定信息,而不是整个信息。

提前致谢

2 个答案:

答案 0 :(得分:1)

您可以按如下方式将grep添加到命令中:

gcloud compute instances describe INSTANCE_NAME --zone INSTANCE'S_ZONE | grep machineType:

gcloud compute instances describe INSTANCE_NAME --zone INSTANCE'S_ZONE | grep tags:

答案 1 :(得分:1)

您可以使用格式选项,只获得您想要的信息。

  

gcloud compute instances list --format =&#39; value(name,tags.items,   machineType)&#39;

您可以使用表格使输出更漂亮

  

gcloud compute instances list --format =&#39; table [](name,tags.items,   machineType)&#39;

要查看列表属性:

  

gcloud compute instances list --format = flattened

要了解有关格式的更多信息:

  

gcloud主题格式