Switch to windmill for roles

Continue with the change from openstack to opendev for hosting.

Change-Id: I6d3ead6a49c3460484b18f672ead0022e1dc2858
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2019-04-20 15:52:48 -04:00
parent b530bc4d60
commit a67474e7e1
8 changed files with 50 additions and 50 deletions

View File

@ -6,7 +6,7 @@ An Ansible deployment to validate ansible roles for Continuous Integration
* License: Apache License, Version 2.0 * License: Apache License, Version 2.0
* Documentation: https://windmill.readthedocs.org * Documentation: https://windmill.readthedocs.org
* Source: https://git.openstack.org/cgit/openstack/windmill * Source: https://opendev.org/windmill/windmill
* Bugs: https://bugs.launchpad.net/windmill * Bugs: https://bugs.launchpad.net/windmill
Description Description

View File

@ -12,14 +12,14 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
--- ---
- name: Install gear. - name: Install gear
hosts: gear:!disabled hosts: gear:!disabled
tasks: tasks:
- name: Setup openstack.gearman role - name: Setup windmill.gear role
include_role: include_role:
name: openstack.gearman name: windmill.gear
- name: Setup openstack.logrotate role. - name: Setup windmill.logrotate role
include_role: include_role:
name: openstack.logrotate name: windmill.logrotate

View File

@ -20,7 +20,7 @@
# directory first. # directory first.
- name: Create nodepool user directories - name: Create nodepool user directories
include_role: include_role:
name: openstack.nodepool name: windmill.nodepool
vars: vars:
nodepool_task_manager: nodepool_task_manager:
- pre - pre
@ -29,17 +29,17 @@
hosts: nodepool-builder:!disabled hosts: nodepool-builder:!disabled
tasks: tasks:
- name: Setup openstack.sudoers role - name: Setup windmill.sudoers role
include_role: include_role:
name: openstack.sudoers name: windmill.sudoers
- name: Setup openstack.ssh role - name: Setup windmill.ssh role
include_role: include_role:
name: openstack.ssh name: windmill.ssh
- name: Setup openstack.diskimage-builder role - name: Setup windmill.diskimage-builder role
include_role: include_role:
name: openstack.diskimage-builder name: windmill.diskimage-builder
- name: Install nodepool elements directory - name: Install nodepool elements directory
become: true become: true
@ -56,14 +56,14 @@
hosts: nodepool:!disabled hosts: nodepool:!disabled
tasks: tasks:
- name: Setup openstack.openstacksdk role - name: Setup windmill.openstacksdk role
include_role: include_role:
name: openstack.openstacksdk name: windmill.openstacksdk
- name: Setup openstack.nodepool role - name: Setup windmill.nodepool role
include_role: include_role:
name: openstack.nodepool name: windmill.nodepool
- name: Setup openstack.logrotate role - name: Setup windmill.logrotate role
include_role: include_role:
name: openstack.logrotate name: windmill.logrotate

View File

@ -16,10 +16,10 @@
hosts: statsd:!disabled hosts: statsd:!disabled
tasks: tasks:
- name: Setup openstack.statsd role. - name: Setup windmill.statsd role.
include_role: include_role:
name: openstack.statsd name: windmill.statsd
- name: Setup openstack.logrotate role. - name: Setup windmill.logrotate role.
include_role: include_role:
name: openstack.logrotate name: windmill.logrotate

View File

@ -16,6 +16,6 @@
hosts: zookeeper:!disabled hosts: zookeeper:!disabled
tasks: tasks:
- name: Setup openstack.zookeeper role - name: Setup windmill.zookeeper role
include_role: include_role:
name: openstack.zookeeper name: windmill.zookeeper

View File

@ -20,14 +20,14 @@
# directory first. # directory first.
- name: Create zuul user directories - name: Create zuul user directories
include_role: include_role:
name: openstack.zuul name: windmill.zuul
vars: vars:
zuul_task_manager: zuul_task_manager:
- pre - pre
- name: Setup openstack.ssh role - name: Setup windmill.ssh role
include_role: include_role:
name: openstack.ssh name: windmill.ssh
with_items: "{{ zuul_connections_ssh }}" with_items: "{{ zuul_connections_ssh }}"
vars: vars:
ssh_key_private_content: "{{ item.ssh_key_private_content }}" ssh_key_private_content: "{{ item.ssh_key_private_content }}"
@ -42,9 +42,9 @@
hosts: zuul-executor:!disabled hosts: zuul-executor:!disabled
tasks: tasks:
- name: Setup openstack.ssh role - name: Setup windmill.ssh role
include_role: include_role:
name: openstack.ssh name: windmill.ssh
# TODO(pabelanger): I'm thinking we should likely create # TODO(pabelanger): I'm thinking we should likely create
# ansible-role-bubblewrap to allow user to better manage this dependency. # ansible-role-bubblewrap to allow user to better manage this dependency.
@ -54,9 +54,9 @@
name: bubblewrap name: bubblewrap
state: present state: present
- name: Setup openstack.ansible role - name: Setup windmill.ansible role
include_role: include_role:
name: openstack.ansible name: windmill.ansible
with_items: "{{ zuul_executor_ansible }}" with_items: "{{ zuul_executor_ansible }}"
vars: vars:
ansible_pip_name: "{{ item.ansible_pip_name }}" ansible_pip_name: "{{ item.ansible_pip_name }}"
@ -68,18 +68,18 @@
hosts: zuul:!disabled hosts: zuul:!disabled
tasks: tasks:
- name: Setup openstack.zuul role - name: Setup windmill.zuul role
include_role: include_role:
name: openstack.zuul name: windmill.zuul
- name: Setup openstack.logrotate role. - name: Setup windmill.logrotate role.
include_role: include_role:
name: openstack.logrotate name: windmill.logrotate
- name: Bootstrap zuul-web - name: Bootstrap zuul-web
hosts: zuul-web:!disabled hosts: zuul-web:!disabled
tasks: tasks:
- name: Setup openstack.nginx role - name: Setup windmill.nginx role
include_role: include_role:
name: openstack.nginx name: windmill.nginx

View File

@ -1,33 +1,33 @@
--- ---
- name: openstack.diskimage-builder - name: windmill.diskimage-builder
src: git+https://opendev.org/windmill/ansible-role-diskimage-builder src: git+https://opendev.org/windmill/ansible-role-diskimage-builder
- name: openstack.gearman - name: windmill.gear
src: git+https://opendev.org/windmill/ansible-role-gear src: git+https://opendev.org/windmill/ansible-role-gear
- name: openstack.logrotate - name: windmill.logrotate
src: git+https://opendev.org/windmill/ansible-role-logrotate src: git+https://opendev.org/windmill/ansible-role-logrotate
- name: openstack.nginx - name: windmill.nginx
src: git+https://opendev.org/windmill/ansible-role-nginx src: git+https://opendev.org/windmill/ansible-role-nginx
- name: openstack.nodepool - name: windmill.nodepool
src: git+https://opendev.org/windmill/ansible-role-nodepool src: git+https://opendev.org/windmill/ansible-role-nodepool
- name: openstack.openstacksdk - name: windmill.openstacksdk
src: git+https://opendev.org/windmill/ansible-role-openstacksdk src: git+https://opendev.org/windmill/ansible-role-openstacksdk
- name: openstack.ssh - name: windmill.ssh
src: git+https://opendev.org/windmill/ansible-role-ssh src: git+https://opendev.org/windmill/ansible-role-ssh
- name: openstack.statsd - name: windmill.statsd
src: git+https://opendev.org/windmill/ansible-role-statsd src: git+https://opendev.org/windmill/ansible-role-statsd
- name: openstack.sudoers - name: windmill.sudoers
src: git+https://opendev.org/windmill/ansible-role-sudoers src: git+https://opendev.org/windmill/ansible-role-sudoers
- name: openstack.zookeeper - name: windmill.zookeeper
src: git+https://opendev.org/windmill/ansible-role-zookeeper src: git+https://opendev.org/windmill/ansible-role-zookeeper
- name: openstack.zuul - name: windmill.zuul
src: git+https://opendev.org/windmill/ansible-role-zuul src: git+https://opendev.org/windmill/ansible-role-zuul

View File

@ -47,4 +47,4 @@ setenv =
show-source = True show-source = True
ignore = E123,E125 ignore = E123,E125
builtins = _ builtins = _
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build