
This patch adds new agent that can be used in Cirros images and does the same functionality as Shaker Lib (allowing execution of remote commands) As an example of Haos agent a simple Neutron DHCP disaster test is added. Change-Id: I4be3fe2c05831f268f4fbde3ac69f74bf45268bc
24 lines
672 B
Bash
24 lines
672 B
Bash
#!/bin/sh
|
|
export OS_NO_CACHE='true'
|
|
export OS_TENANT_NAME='admin'
|
|
export OS_USERNAME='admin'
|
|
export OS_PASSWORD='admin'
|
|
export OS_AUTH_STRATEGY='keystone'
|
|
export OS_REGION_NAME='RegionOne'
|
|
export CINDER_ENDPOINT_TYPE='publicURL'
|
|
export GLANCE_ENDPOINT_TYPE='publicURL'
|
|
export KEYSTONE_ENDPOINT_TYPE='publicURL'
|
|
export NOVA_ENDPOINT_TYPE='publicURL'
|
|
export NEUTRON_ENDPOINT_TYPE='publicURL'
|
|
export OS_ENDPOINT_TYPE='publicURL'
|
|
export MURANO_REPO_URL='http://catalog.openstack.org/'
|
|
export OS_AUTH_URL=
|
|
|
|
export FUEL_HOST=
|
|
export FUEL_USERNAME='root'
|
|
export FUEL_PASSWORD='r00tme'
|
|
|
|
export HAOS_IMAGE="haos-image"
|
|
export HAOS_FLAVOR="haos-flavor"
|
|
export HAOS_SERVER_ENDPOINT=
|