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_import.py

19 lines
388 B

"""Constructs a VM."""
import json
import helpers.common
import helpers.extra.common2
def GenerateConfig(_):
"""Generates config of a VM."""
return """
resources:
- name: %s
type: compute.v1.instance
properties:
machineSize: %s
""" % (helpers.common.GenerateMachineName(
json.dumps('myFrontend').strip('"'), 'prod'),
helpers.extra.common2.GenerateMachineSize())