如何使用GCE Node.js客户端从实例模板创建新的GCE VM实例?

时间:2018-07-23 14:05:26

标签: google-compute-engine google-api-nodejs-client

Google compute engine中,我可以使用instance template从模板创建新的VM。使用GCE控制台可以正常工作,也可以使用API(URL参数“ sourceInstanceTemplate”)正常工作。

如何使用googleapis/nodejs-compute(Node.js GCE SDK)从实例模板创建新的GCE-VM?

2 个答案:

答案 0 :(得分:5)

google-auth-library-nodejs可用于直接访问GCE instances.insert API

下面的示例改编自https://github.com/google/google-auth-library-nodejs,并且如果在GCE中执行(特别是在Google Cloud Function中执行)也可以正常工作。

const zone = 'some-zone';
const name = 'a-name';
const sourceInstanceTemplate = `some-template-name`;
createVM(zone, name, sourceInstanceTemplate)
  .then(console.log)
  .catch(console.error);

async function createVM(zone, vmName, templateName) {
  const {auth} = require('google-auth-library');
  const client = await auth.getClient({
    scopes: 'https://www.googleapis.com/auth/cloud-platform'
  });
  const projectId = await auth.getDefaultProjectId();

  const sourceInstanceTemplate = `projects/${projectId}/global/instanceTemplates/${templateName}`;
  const url = `https://www.googleapis.com/compute/v1/projects/${projectId}/zones/${zone}/instances?sourceInstanceTemplate=${sourceInstanceTemplate}`;

  return await client.request({
    url: url,
    method: 'post',
    data: {name: vmName}
  });
}

答案 1 :(得分:2)

我在节点客户端的文档中找不到解决方案。希望我的 替代 解决方案可以帮助某人。

const exec = require('child-process-promise').exec;

var create_vm = (zone, vmname, templatename) => {
  const cmd =  `gcloud compute instances create ${vmname} ` +
      `--zone=${zone} ` +
      `--source-instance-template=${templatename} `;
  return exec(cmd);
};

create_vm('us-central1-c', 'my-instance', 'whatever')
    .then(console.log)
    .catch(console.error);

您可以自定义gcloud允许的范围。创建实例的文档/选项为here