"""Generates name of a VM."""defGenerateMachineName(prefix,suffix):returnprefix+"-"+suffix
在模板中使用辅助脚本
如需在 vm-template.py 中使用 common.py,必须对模板进行多项更改。
如需查看更改,请打开 vm-template.py:
nanovm-template.py
该模板包含突出显示了更改的代码注释。
请注意,模板会在文件开始导入 common.py。在 resources 部分中,虚拟机的 name 字段现在为 GenerateMachineName()。
"""Creates the virtual machine."""# `common.py` is imported below.importcommonCOMPUTE_URL_BASE='https://www.googleapis.com/compute/v1/'defGenerateConfig(context):"""Generates configuration of a VM."""resources=[{'name':common.GenerateMachineName('myfrontend','prod'),'type':'compute.v1.instance','properties':{'zone':'us-central1-f','machineType':COMPUTE_URL_BASE+'projects/'+context.env['project']+'/zones/us-central1-f/machineTypes/f1-micro','disks':[{'deviceName':'boot','type':'PERSISTENT','boot':True,'autoDelete':True,'initializeParams':{'sourceImage':COMPUTE_URL_BASE+'projects/''debian-cloud/global/images/family/debian-11'}}],'networkInterfaces':[{'network':COMPUTE_URL_BASE+'projects/'+context.env['project']+'/global/networks/default','accessConfigs':[{'name':'External NAT','type':'ONE_TO_ONE_NAT'}]}]}}]return{'resources':resources}
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-04-02。"],[[["Helper scripts, or template modules, enhance template efficiency by performing specific functions like interpreting metadata, creating files, and launching services."],["The provided Python helper script, `common.py`, demonstrates how to generate virtual machine names using a specified prefix and suffix."],["To use the helper script within a template, the `vm-template.py` file must import `common.py` and call the `GenerateMachineName()` function to dynamically generate resource names."],["The updated configuration file, `two-vms.yaml`, must also import `common.py` to utilize the helper script's functionality during deployment, which can be done using the gcloud CLI."],["The deployment, including resources with dynamically generated names, can be viewed using the `gcloud deployment-manager deployments describe` command."]]],[]]