You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/cmd/expandybird/test/templates/python_template_with_inline...

21 lines
534 B

"""Constructs a VM."""
# Verify that both ways of hierarchical imports work.
from helpers import common
import helpers.extra.common2
def GenerateConfig(evaluation_context):
"""Generates config of a VM."""
return """
resources:
- name: %s
type: compute.v1.instance
properties:
description: %s
machineSize: %s
""" % (common.GenerateMachineName("myFrontend", "prod"),
evaluation_context.imports[
evaluation_context.properties["description-file"]],
helpers.extra.common2.GenerateMachineSize())