1

我试图复制谷歌网站 https://cloud.google.com/compute/docs/tutorials/python-guide上的以下指南

我无法弄清楚存储桶和计算的含义。我需要将什么样的参数传递给脚本?如果我想启动我的私有映像,我应该在 getFromFamily(project='debian-cloud', family='debian-8').execute() 中放入什么?我是否像下面这样传递变量?

create_instance(compute,projectname, us-east1-a, instance-1, bucket)

我已将脚本简化如下。我取出了我认为不需要的参数。

def create_instance(compute, project, zone, name, bucket):

image_response = compute.images().getFromFamily(
    project='debian-cloud', family='debian-8').execute()
source_disk_image = image_response['selfLink']

# Configure the machine
machine_type = "us-east1-b/%s/machineTypes/f1-micro" % zone
startup_script = open(
    os.path.join(
        os.path.dirname(__file__), 'startup-script.sh'), 'r').read()

config = {
    'name': instance-1,
    'machineType': f1-micro,

    # Specify the boot disk and the image to use as a source.
    'disks': [
        {
            'boot': True,
            'autoDelete': True,
            'initializeParams': {
                'sourceImage': /global/imagename,
            }
        }
    ],

    # Specify a network interface with NAT to access the public
    # internet.
    'networkInterfaces': [{
        'network': 'global/networks/default',
        'accessConfigs': [
            {'type': 'ONE_TO_ONE_NAT', 'name': 'External NAT'}
        ]
    }],

    # Allow the instance to access cloud storage and logging.
    'serviceAccounts': [{
        'email': 'default',
        'scopes': [
            'https://www.googleapis.com/auth/devstorage.read_write',

        ]
    }],

    # Metadata is readable from the instance and allows you to
    # pass configuration from deployment scripts to instances.
    'metadata': {
        'items': [{
            # Startup script is automatically executed by the
            # instance upon startup.
            'key': 'startup-script',
            'value': startup_script
        },  {
            'key': 'bucket',
            'value': bucket
        }]
    }
}

return compute.instances().insert(
    project=project,
    zone=zone,
    body=config).execute()
4

2 回答 2

3

这已经有一段时间了,但这里有一些信息。

仅当bucket您希望实例具有共享存储位置时才需要(此处的文档)。如果不需要存储桶,您应该删除元数据bucket键值(尽管我很惊讶地看到使用假存储桶名称创建实例不会失败)。

compute是您经过身份验证的客户端对象,用于与您的“计算引擎”服务进行交互。要获取客户端,您需要按照这些说明获取密钥、秘密和刷新令牌。这是一个代码示例:

from googleapiclient import discovery
from oauth2client.client import GoogleCredentials
from oauth2client import GOOGLE_TOKEN_URI
credentials = GoogleCredentials(access_token=None, client_id='your-client-id', 
                                client_secret='your-client-secret',
                                refresh_token='your-refresh-token',
                                token_expiry=None, token_uri=GOOGLE_TOKEN_URI,
                                user_agent='Python client library')
compute = discovery.build('compute', 'v1', credentials=credentials)

至于私有镜像,如果你想使用相同的代码,那么你需要在你的 GCE控制台中定位和识别它们,并提供projectfamily标识符。您还可以使用 API 按名称获取图像:

image = compute.images().get(project='your-project-id', image='your-image-name').execute(),其中image['selfLink']应提供与 sourceImage实例中的 相同的config

于 2017-03-01T11:37:05.157 回答
1

该示例已过时:注意 oauth2client 现在已弃用,Google Auth 是当前客户端库。这是一个更新的解决方案。关键步骤是生成正确的更新 json。这可以通过在授权服务帐户下使用等效的 REST 命令翻译您的预期实例来实现。

在此处输入图像描述

import google.auth
import googleapiclient.discovery
PROJECT_ID = "<your project ID>"
ZONE = "<your zone>"

credentials, _ = google.auth.default()
compute = googleapiclient.discovery.build('compute', 'v1', 
credentials=credentials)

config = "{generate your instance's json from equivalent REST}"

compute.instances().insert(project=PROJECT_ID, zone=ZONE, 
body=config).execute()
于 2020-11-08T19:13:02.947 回答