cddeploymentmanager-samples/examples/v2/step_by_step_guide/step7_use_environment_variables/python
nanovm-template.py# use your preferred text editor
模板的各个部分已替换为模板属性和环境变量。例如,项目 ID 已替换为 context.env[project],因此您无需手动替换模板中的项目 ID。
文件中的注释描述了模板的其他更改。
# Copyright 2016 Google Inc. All rights reserved.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License."""Creates the virtual machine."""COMPUTE_URL_BASE='https://www.googleapis.com/compute/v1/'defGenerateConfig(context):"""Creates the virtual machine with environment variables."""resources=[{# `the-first-vm` is replaced with `context.env[`name`]`'name':context.env['name'],'type':'compute.v1.instance','properties':{# All occurrences of `us-central1-f` are replaced with# `context.properties[`zone`]. # All occurrences of the project ID are replaced with # `context.env[`project`]`.# `f1-micro` is replaced with `context.properties["machineType"]. 'zone':context.properties['zone'],'machineType':''.join([COMPUTE_URL_BASE,'projects/',context.env['project'],'/zones/',context.properties['zone'],'/machineTypes/',context.properties['machineType']]),'disks':[{'deviceName':'boot','type':'PERSISTENT','boot':True,'autoDelete':True,'initializeParams':{'sourceImage':''.join([COMPUTE_URL_BASE,'projects/','debian-cloud/global/','images/family/debian-11'])}}],# `$(ref.a-new-network.selfLink)` is replaced with # `$(ref.` + context.properties[`network`] + `selfLink)`.'networkInterfaces':[{'network':'$(ref.'+context.properties['network']+'.selfLink)','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。"],[[["Templates can use custom properties, which are arbitrary variables, allowing for template reuse across different zones, regions, and projects without modification."],["Template properties are referenced using the syntax `context.properties[\"property-name\"]`, enabling the changing of a property's value for various configurations without altering the template itself."],["In addition to template properties, environment variables, pre-populated with information about the deployment, can be used in templates by calling them with `context.env['variable-name']`."],["Environment variables can provide unique details about a deployment, such as the deployment name, project ID, resource name, and configuration type."],["The `vm-template.py` file demonstrates how to replace static parts of a template with template properties and environment variables, making the templates more dynamic and reusable."]]],[]]