mirror of https://github.com/helm/helm
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.
21 lines
534 B
21 lines
534 B
9 years ago
|
"""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())
|