/opt/imh-python/lib/python3.9/site-packages/openstack/tests/unit/orchestration/v1
NameSizeModeActions
__pycache__/-0755rm
helloworld.txt60644editdlrm
hello_world.yaml10980644editdlrm
test_proxy.py148010644editdlrm
test_resource.py24050644editdlrm
test_software_config.py19900644editdlrm
test_software_deployment.py23980644editdlrm
test_stack.py104130644editdlrm
test_stack_environment.py17620644editdlrm
test_stack_files.py19580644editdlrm
test_stack_template.py25460644editdlrm
test_template.py34030644editdlrm
__init__.py00644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/openstack/tests/unit/orchestration/v1/hello_world.yaml (1098B)
# # Minimal HOT template defining a single compute server. # heat_template_version: 2013-05-23 description: > Minimal HOT template for stack parameters: key_name: type: string description: Name of an existing key pair to use for the server constraints: - custom_constraint: nova.keypair flavor: type: string description: Flavor for the server to be created default: m1.small constraints: - custom_constraint: nova.flavor image: type: string description: Image ID or image name to use for the server constraints: - custom_constraint: glance.image network: type: string description: Network used by the server resources: server: type: OS::Nova::Server properties: key_name: { get_param: key_name } image: { get_param: image } flavor: { get_param: flavor } networks: [{network: {get_param: network} }] metadata: message: {get_file: helloworld.txt} outputs: server_networks: description: The networks of the deployed server value: { get_attr: [server, networks] }