Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit 9a31953

Browse files
authored
Document Vagrant being unsupported on CentOS 8 (#67)
1 parent e4afcc2 commit 9a31953

File tree

2 files changed

+40
-20
lines changed

2 files changed

+40
-20
lines changed

README.rst

+18
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,24 @@ Molecule Vagrant Plugin
2828
Molecule Vagrant is designed to allow use of Vagrant for provisioning of test
2929
resources.
3030

31+
Supported Platforms
32+
===================
33+
34+
This driver relies on vagrant command line which is known to be problematic
35+
to install on several platforms. We do our best to perform CI/CD testing on
36+
multiple platforms but some are disabled due to known bugs.
37+
38+
* ✅ MacOS with VirtualBox - GitHub Actions
39+
* ✅ Fedora 32 with libvirt - Zuul
40+
* ❌ CentOS 8 with libvirt - Zuul DISABLED due to 1127_ and 11020_
41+
42+
Please **do not file bugs for unsupported platforms**. You are welcomed to
43+
create PRs that fix untested platform, as long they do not break existing ones.
44+
45+
.. _`1127`: https://github.com/vagrant-libvirt/vagrant-libvirt/issues/1127
46+
.. _`11020`: https://github.com/hashicorp/vagrant/issues/11020
47+
48+
3149
Documentation
3250
=============
3351

zuul.d/layout.yaml

+22-20
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,27 @@
1111
tox_envlist: py38
1212
timeout: 3600
1313

14-
- job:
15-
name: molecule-vagrant-centos
16-
description: Run py36 tox environment
17-
parent: ansible-tox-py36
18-
nodeset: centos-8-1vcpu
19-
attempts: 2
20-
vars:
21-
tox_envlist: py36
22-
timeout: 3600
14+
# CentOS is unsupported due to:
15+
# https://github.com/vagrant-libvirt/vagrant-libvirt/issues/1127
16+
# - job:
17+
# name: molecule-vagrant-centos
18+
# description: Run py36 tox environment
19+
# parent: ansible-tox-py36
20+
# nodeset: centos-8-1vcpu
21+
# attempts: 2
22+
# vars:
23+
# tox_envlist: py36
24+
# timeout: 3600
2325

24-
- job:
25-
name: molecule-vagrant-devel-centos
26-
description: Run devel tox environment
27-
parent: ansible-tox-py36
28-
nodeset: centos-8-1vcpu
29-
attempts: 2
30-
vars:
31-
tox_envlist: devel
32-
timeout: 3600
26+
# - job:
27+
# name: molecule-vagrant-devel-centos
28+
# description: Run devel tox environment
29+
# parent: ansible-tox-py36
30+
# nodeset: centos-8-1vcpu
31+
# attempts: 2
32+
# vars:
33+
# tox_envlist: devel
34+
# timeout: 3600
3335

3436
- project:
3537
check:
@@ -38,8 +40,8 @@
3840
vars:
3941
test_setup_skip: true
4042
tox_envlist: lint,packaging
41-
- molecule-vagrant-centos
43+
# - molecule-vagrant-centos
4244
- molecule-vagrant-fedora
43-
- molecule-vagrant-devel-centos
45+
# - molecule-vagrant-devel-centos
4446
gate:
4547
jobs: *defaults

0 commit comments

Comments
 (0)