skyline-console/playbooks/devstack/compute/run-devstack.yaml
zhu.boxiang f7e4b18413 feat: Support devstack integrated e2e tests
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
2021-10-25 18:34:48 +08:00

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