4

我正在尝试通过部署管理器配置(YAML 文件)创建一个包含多个 VM 的非托管 instanceGroup。

我可以通过 Google API 轻松找到有关addInstances的文档,但在 YAML 文件中找不到有关如何执行此操作的文档:

实例

实例组

实例/实例组资源中应该包含哪些属性才能使其工作?

4

4 回答 4

4

下面的 YAML 将创建一个计算引擎实例,创建一个非托管实例组,并将该实例添加到该组中。

resources:
- name: instance-1
  type: compute.v1.instance
  properties:
    zone: australia-southeast1-a
    machineType: zones/australia-southeast1-a/machineTypes/n1-standard-1
    disks:
    - deviceName: boot
      type: PERSISTENT
      diskType: zones/australia-southeast1-a/diskTypes/pd-ssd
      boot: true
      autoDelete: true
      initializeParams:
        sourceImage: projects/debian-cloud/global/images/debian-9-stretch-v20180716
    networkInterfaces:
    - network: global/networks/default
      accessConfigs:
      - name: External NAT
        type: ONE_TO_ONE_NAT

- name: ig-1
  type: compute.v1.instanceGroup
  properties:
    zone: australia-southeast1-a
    network: global/networks/default

- name: ig-1-members
  action: gcp-types/compute-v1:compute.instanceGroups.addInstances
  properties:
    project: YOUR_PROJECT_ID
    zone: australia-southeast1-a
    instanceGroup: ig-1
    instances: [ instance: $(ref.instance-1.selfLink) ]
于 2018-07-28T00:11:19.630 回答
1

现在不可能使用 gcloud 部署管理器来完成。

于 2016-12-08T13:09:23.037 回答
1

这是经过测试的,似乎虽然 Google 部署管理器能够完成,但没有出现以下代码段问题:

{
  "instances":  [
    {
      "instance":  string
    }
  ]
}

它没有添加指定的实例,而是创建了 IGM。

然而 Terraform 似乎能够做到这一点https://www.terraform.io/docs/providers/google/r/compute_instance_group.html

于 2018-01-12T14:03:46.773 回答
1

我认为@mcourtney 的回答是正确的。

我刚刚遇到这种情况,我使用带有 yaml 配置的 python 模板将实例添加到非托管实例组。

这是我的 python 模板中的资源定义片段:

{
        'name': name + '-ig-members',
        'action': 'gcp-types/compute-v1:compute.instanceGroups.addInstances',
        'properties': {
            'project': '<YOUR PROJECT ID>',
            'zone' : context.properties['zone'], // Defined in config yaml
            'instanceGroup': '<YOUR Instance Group name ( not url )>',
            "instances": [
    {
      "instance": 'projects/<PROJECT ID>/zones/<YOUR ZONE>/instances/<INSTANCE NAME>'
    }
  ]            
        }
    }

参考 API 记录在这里:

https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroups/addInstances

这只是一个例子。您可以将所有硬编码的内容抽象为 yaml 配置或 python 模板顶部的变量。

于 2019-09-23T18:38:03.417 回答