-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: move keycloak+aio+csi jobs to zuul (#1043)
Signed-off-by: Mohammed Naser <[email protected]>
- Loading branch information
Showing
21 changed files
with
256 additions
and
281 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../aio/create.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../aio/group_vars/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../aio/host_vars/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
../shared/molecule.yml | ||
../aio/molecule.yml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../aio/prepare.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[tox] | ||
minversion = 4 | ||
skipsdist = True | ||
|
||
[testenv:molecule] | ||
deps = | ||
molecule | ||
molecule-plugins[docker] | ||
# TODO(mnaser): We should remove these once we have an actual installable | ||
# Python package and drop `skipsdist`. | ||
docker-image-py | ||
jmespath | ||
netaddr | ||
openstacksdk<0.99.0 | ||
rjsonnet | ||
|
||
[testenv:molecule-keycloak] | ||
deps = | ||
{[testenv:molecule]deps} | ||
commands = | ||
molecule test -s keycloak | ||
|
||
[testenv:molecule-csi-{rbd,local-path-provisioner}] | ||
deps = | ||
{[testenv:molecule]deps} | ||
setenv = | ||
rbd: MOLECULE_CSI_DRIVER = rbd | ||
local-path-provisioner: MOLECULE_CSI_DRIVER = local-path-provisioner | ||
commands = | ||
molecule test -s csi | ||
|
||
[testenv:molecule-aio-{openvswitch,ovn}] | ||
deps = | ||
{[testenv:molecule]deps} | ||
setenv = | ||
ATMOSPHERE_DEBUG = true | ||
openvswitch: ATMOSPHERE_NETWORK_BACKEND = openvswitch | ||
ovn: ATMOSPHERE_NETWORK_BACKEND = ovn | ||
commands = | ||
molecule test -s aio |
Oops, something went wrong.