f7e4b18413
1. add skyline-console-devstack-e2etests-compute into check and gate job 2. add skyline-console-devstack-e2etests-network into check and gate job 3. add skyline-console-devstack-e2etests-other into check and gate job 4. add skyline-console-devstack-e2etests-storage into check and gate job 5. add e2e into Makefile Change-Id: Ida9542129231f7a61d796495d826fc05ddee0abf
17 lines
557 B
YAML
17 lines
557 B
YAML
---
|
|
- hosts: controller
|
|
tasks:
|
|
- name: Add enable_plugin into local.conf
|
|
shell:
|
|
executable: /bin/bash
|
|
cmd: |
|
|
local_conf="/opt/stack/devstack/local.conf"
|
|
sed -i '1a enable_plugin skyline-apiserver https://opendev.org/skyline/skyline-apiserver' $local_conf
|
|
sed -i '1a enable_plugin ironic https://opendev.org/openstack/ironic' $local_conf
|
|
sed -i '1a enable_plugin neutron https://opendev.org/openstack/neutron' $local_conf
|
|
become: yes
|
|
|
|
- hosts: all
|
|
roles:
|
|
- orchestrate-devstack
|