如何获取托管实例组中的活动实例模板名称
How to get the active instance template name in a managed instance group
我正在尝试获取实例组的实例模板名称。在 GCP 控制台中,实例模板包含在显示中(参见示例屏幕截图)。但是,我找不到可以提供此信息的 gcloud 命令,例如:
gcloud compute instance-groups describe xxxx-instance-group --region=us-central1 --project=project_xxx
我目前无法访问 gcloud
,但您使用了错误的命令或默认输出不包含模板。
IIRC 模板仅适用于托管 IG。有一个 gcloud
子命令 gcloud compute instance-groups managed describe
应该包含该值。如果默认命令确实如此,请尝试附加例如--format=yaml
.
证实这一点的一个好方法是使用 APIs Explorer. For the Compute Engine service there's a Managed Instance Group resource that does include template. See the response body for regionInstanceGroupManagers.get
我正在尝试获取实例组的实例模板名称。在 GCP 控制台中,实例模板包含在显示中(参见示例屏幕截图)。但是,我找不到可以提供此信息的 gcloud 命令,例如:
gcloud compute instance-groups describe xxxx-instance-group --region=us-central1 --project=project_xxx
我目前无法访问 gcloud
,但您使用了错误的命令或默认输出不包含模板。
IIRC 模板仅适用于托管 IG。有一个 gcloud
子命令 gcloud compute instance-groups managed describe
应该包含该值。如果默认命令确实如此,请尝试附加例如--format=yaml
.
证实这一点的一个好方法是使用 APIs Explorer. For the Compute Engine service there's a Managed Instance Group resource that does include template. See the response body for regionInstanceGroupManagers.get