zuul: create Neutron config dir for the devstack job

With [1] the devstack zuul job will try to update Neutron's
configuration, even though we don't use Neutron for Qinling at all.

This commit is a workaround to create a Neutron config dir to satisfy
devstack when the Neutron service is actually disabled.

[1] I2dcbd9bdb401860820e655d97aa3c4775af2827f

Change-Id: I6ecc7d631c7deccf7d5011ec68a08759441a0318
This commit is contained in:
Hunt Xu 2018-03-20 11:52:55 +08:00
parent 7cd0e933b1
commit 9f91d6f2e6
3 changed files with 20 additions and 0 deletions

View File

@ -12,6 +12,8 @@
- ^doc/.*
- ^qinling/tests/unit/.*$
- ^releasenotes/.*$
pre-run: playbooks/pre.yaml
post-run: playbooks/post.yaml
vars:
devstack_services:
# Disable unneeded services.

8
playbooks/post.yaml Normal file
View File

@ -0,0 +1,8 @@
- hosts: all
tasks:
- name: cleanup the Neutron config dir
become: true
file:
path: /etc/neutron
state: absent

10
playbooks/pre.yaml Normal file
View File

@ -0,0 +1,10 @@
- hosts: all
tasks:
- name: create Neutron config dir for devstack job
become: true
file:
path: /etc/neutron
owner: stack
recurse: yes
state: directory