DevStack: Remove SOA/NS checks

Akamai/DynECT will "randomly" pick a NS from the
set to use, meaning this check will fail needlessly

Change-Id: Ic8ec30bf98500f6d0fe38a29c382f95e411b2b26
This commit is contained in:
Kiall Mac Innes 2015-05-15 16:55:29 +01:00
parent 20d4c22bb3
commit 6295501eb0

View File

@ -183,10 +183,6 @@ DOMAIN_NAME="exercise-$(openssl rand -hex 4).com."
# Create the domain
designate domain-create --name $DOMAIN_NAME --email devstack@example.org
# should have SOA and NS records
ensure_record_present $DOMAIN_NAME SOA $DESIGNATE_DEFAULT_NS_RECORD
ensure_record_present $DOMAIN_NAME NS $DESIGNATE_DEFAULT_NS_RECORD
DOMAIN_ID=$(get_domain_id $DOMAIN_NAME 1)
# Fetch the domain
@ -301,10 +297,6 @@ designate domain-delete $DOMAIN_ID
# Fetch the domain - should be gone
designate domain-get $DOMAIN_ID || echo "good - domain was removed"
# should not have SOA and NS records
ensure_record_absent $DOMAIN_NAME SOA $DESIGNATE_DEFAULT_NS_RECORD
ensure_record_absent $DOMAIN_NAME NS $DESIGNATE_DEFAULT_NS_RECORD
set +o xtrace
echo "*********************************************************************"
echo "SUCCESS: End DevStack Exercise: $0"