diff options
author | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2020-06-16 12:05:14 +0200 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-07-30 09:03:11 +0000 |
commit | cbc0bf009dc59c483c88ce32a50c016874cd5363 (patch) | |
tree | 0fe5634bc0dc230a03d3e860267c9c3cd09b5c7f /deployment/noheat/infra-openstack/ansible/group_vars | |
parent | a879e2a54e0641b692202d417021f1824032b123 (diff) |
Add Ansible roles for OpenStack hosts
Key pair is generated upon host creation and removed after the host is
destroyed.
This patch is based on previous work by:
Krzysztof Opasiak <k.opasiak@samsung.com>
Issue-ID: INT-1601
Change-Id: I9acd0b68a3ee79a0d710c40e0a1cc8470dfacce5
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Diffstat (limited to 'deployment/noheat/infra-openstack/ansible/group_vars')
-rw-r--r-- | deployment/noheat/infra-openstack/ansible/group_vars/all.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/deployment/noheat/infra-openstack/ansible/group_vars/all.yml b/deployment/noheat/infra-openstack/ansible/group_vars/all.yml index 68497a0a5..1da1e8f78 100644 --- a/deployment/noheat/infra-openstack/ansible/group_vars/all.yml +++ b/deployment/noheat/infra-openstack/ansible/group_vars/all.yml @@ -1,4 +1,14 @@ --- network: - name: "onap_ci_lab" + name: &network_name "onap_ci_lab" cidr: "192.168.1.0/24" + +keypair: + name: &keypair_name "onap_ci_lab" + +hosts: + - name: "operator0" + image: "cirros-0.5.1-x86_64-disk" + flavor: "cirros256" + keypair: *keypair_name + network: *network_name |