diff options
-rw-r--r-- | snaps/openstack/tests/create_stack_tests.py | 2 | ||||
-rw-r--r-- | snaps/openstack/tests/heat/agent-group.yaml | 8 | ||||
-rw-r--r-- | snaps/openstack/tests/heat/agent.yaml | 1 |
3 files changed, 8 insertions, 3 deletions
diff --git a/snaps/openstack/tests/create_stack_tests.py b/snaps/openstack/tests/create_stack_tests.py index 6041735..7155a29 100644 --- a/snaps/openstack/tests/create_stack_tests.py +++ b/snaps/openstack/tests/create_stack_tests.py @@ -536,9 +536,11 @@ class CreateStackNestedResourceTests(OSIntegrationTestCase): self.flavor_creator.create() env_values = { + 'network_name': self.guid + '-network', 'public_network': self.ext_net_name, 'agent_image': self.image_creator.image_settings.name, 'agent_flavor': self.flavor_creator.flavor_settings.name, + 'key_name': self.guid + '-key', } heat_tmplt_path = pkg_resources.resource_filename( diff --git a/snaps/openstack/tests/heat/agent-group.yaml b/snaps/openstack/tests/heat/agent-group.yaml index 540ea93..4b97495 100644 --- a/snaps/openstack/tests/heat/agent-group.yaml +++ b/snaps/openstack/tests/heat/agent-group.yaml @@ -41,6 +41,10 @@ parameters: availability_zone: type: string default: nova + network_name: + type: string + key_name: + type: string resources: slaves: @@ -66,7 +70,7 @@ resources: network: type: OS::Neutron::Net properties: - name: network + name: { get_param: agent_count } subnet: type: OS::Neutron::Subnet @@ -91,7 +95,7 @@ resources: type: OS::Nova::KeyPair properties: save_private_key: true - name: agent_keypair + name: { get_param: key_name } open_security_group: type: OS::Neutron::SecurityGroup diff --git a/snaps/openstack/tests/heat/agent.yaml b/snaps/openstack/tests/heat/agent.yaml index 014b14f..8ac0660 100644 --- a/snaps/openstack/tests/heat/agent.yaml +++ b/snaps/openstack/tests/heat/agent.yaml @@ -25,7 +25,6 @@ parameters: default: 'Ubuntu 16.04' key_name: type: string - default: test_key username: type: string default: test_user |