diff options
Diffstat (limited to 'deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample')
-rw-r--r-- | deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample b/deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample new file mode 100644 index 000000000..40fdabf94 --- /dev/null +++ b/deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample @@ -0,0 +1,19 @@ +--- +network: + name: &network_name "onap_ci_lab" + cidr: "192.168.1.0/24" + +keypair: + name: &keypair_name "onap_ci_lab" + +securitygroup: + name: &securitygroup_name "onap_ci_lab" + remote_ip_prefix: "172.24.4.0/24" + +hosts: + - name: "operator0" + image: "cirros-0.5.1-x86_64-disk" + flavor: "cirros256" + keypair: *keypair_name + network: *network_name + securitygroup: *securitygroup_name |