# 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.{%import'helpers/common.jinja'ascommon%}resources:- name: {{ common.GenerateMachineName("myfrontend", "prod") }} type: compute.v1.instance properties: zone: us-central1-f machineType: https://www.googleapis.com/compute/v1/projects/{{ env['project'] }}/zones/us-central1-f/machineTypes/f1-micro disks: - deviceName: boot type: PERSISTENT boot: true autoDelete: true initializeParams: sourceImage: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/family/debian-11 networkInterfaces: - network: https://www.googleapis.com/compute/v1/projects/{{ env['project'] }}/global/networks/default accessConfigs: - name: External NAT type: ONE_TO_ONE_NAT
然后,配置必须导入这两个文件(包括 helpers/common.jinja 文件):
# Copyright 2015 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.imports:-path:helpers/common.jinja-path:vm-instance-example.jinjaresources:-name:my-vmtype:vm-instance-example.jinja
# 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."""Generates name of a VM."""defGenerateMachineName(prefix,suffix):returnprefix+"-"+suffix
要在 Python 模板中使用它,应如下所示:
# 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."""Constructs a VM with imported module."""fromhelpersimportcommonCOMPUTE_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}
然后,配置必须导入这两个文件(包括 helpers/common.py 文件):
# Copyright 2015 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.imports:-path:helpers/common.py-path:vm-instance-example.pyresources:-name:my-vmtype:vm-instance-example.py
这是一个较为复杂的辅助模块:
# Copyright 2015 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."""Helper methods for working with containers in config."""importcommonimportdefaultimportyaml# Specific properties for this component, also see container_instanceDCKRENV=default.DCKRENVDCKRIMAGE=default.DCKRIMAGEMANIFEST="""version: v1beta2containers: - name: %(name)s image: %(dockerImage)s ports: - name: %(name)s-port hostPort: %(port)i containerPort: %(port)i%(env)s"""defGenerateManifest(context):"""Generates a Container Manifest given a Template context. Args: context: Template context, which must contain dockerImage and port properties, and an optional dockerEnv property. Returns: A Container Manifest as a YAML string. """env=""env_list=[]ifDCKRENVincontext.properties:forkey,valueincontext.properties[DCKRENV].iteritems():env_list.append({"name":key,"value":value})ifenv_list:env="env: "+yaml.dump(env_list,default_flow_style=True)manifest_yaml_string=MANIFEST%{"name":context.env["name"],"dockerImage":context.properties[DCKRIMAGE],"port":context.properties[default.PORT],"env":env}returncommon.GenerateEmbeddableYaml(manifest_yaml_string)
[[["易于理解","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。"],[[["Template modules are helper files that enhance template efficiency by performing specific functions, such as generating unique resource names."],["Deployment Manager can utilize template modules written in either Jinja or Python, offering flexibility in coding preference."],["A template module can be imported and used within other templates, like the example provided where a Jinja template uses a module to generate a machine name with a given prefix and suffix."],["The configuration must import all used files, which include both the main template and any helper template modules, for the Deployment Manager service to properly expand it."],["The same principles apply to modules in Python, and the content shows examples of using a python module to generate names in a python template, as well as a more complicated python module example."]]],[]]