-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
designate: create a test port and nslookup it #3443
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI failure looks related: Error: Waiting for 'thanos port is nslookup-able' timed out.
For new CI runs please ensure want_designate_proposal was set to 1, as that is not the default.
I am trying to keep the size of this PR small, and therefore cannot enable testing designate, as its implementation is not entirely merged. The aim of this PR is minimum designate recordset creation test. The CI failure: |
Please rebase to fix Travis. |
Added a basic test for designate recordset being created when a floating ip is assigned to a port on a fixed network. ping will not work because the port is still down as it is not assigned to a vm. This helps test designate without nova/glance/cinder/milkyway/... and other astronomical services. Also fixed a type in pools file name.
@JanZerebecki @cmurphy could you please have another look at this ? |
CI with want_designate_proposal=1 now passes
scripts/qa_crowbarsetup.sh
Outdated
|
||
# Run Tempest Smoketests if configured to do so | ||
tempestret=0 | ||
if [[ $want_tempest = 1 ]]; then | ||
openstack tld create --name com # needed by designate-template-plugin smoke test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if you don't have designate deployed ? won't this command fail ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thats true, let me fix that
designate smoke test try to create a zone and recordset however they expect the tld to already exists. So creating one.
[[ -e $designate_pools ]] && designate-manage pool update --file $designate_pools | ||
designate_pools="/etc/designate/pools.crowbar.yaml" | ||
if [[ -e $designate_pools ]]; then | ||
designate-manage pool update --file $designate_pools |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't this be already done by the barclamp?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the barclamp leaves a sample pool file /etc/designate/pools.crowbar.yaml"
for the admin to review.
Why the barclamp doesnot do this ?
The way designate is currently installed, a zone will be created as soon as a vm is created, the only thing stopping it is "unavailability" of pool in designate. This will have security implication (allowing anyone who can create a vm to create a zone, leaking dns zone information on un-intended network, causing conflicts in dns resolution).
However this is needed to test designate, so adding it here as part of automation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is being taken care of by crowbar/crowbar-openstack#2192
designate-manage pool update --file $designate_pools | ||
# default values from the node.neutron.dns_domain | ||
openstack tld create --name local | ||
openstack zone create --email [email protected] openstack.local. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't this be done by the neutron integration of the barclamp?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
without pools, designate cannot create zones, (so they can be XFRd to be resolvable)
Co-Authored-By: Dirk Mueller <[email protected]>
Needs rebase. |
Added a basic test for designate recordset being created when a
floating ip is assigned to a port on a fixed network.
ping will not work because the port is still down as it is not assigned
to a vm. This helps test designate without
nova/glance/cinder/milkyway/... and other astronomical services.
Also fixed a type in pools file name.