upstream CI: removed all CentOS 8 support.

CentOS 8 images are not supported anymore, and we are using CentOS 8
Stream images.

This patch removes all configuration for CentOS 8 and updates test
README to point to the available container images.
This commit is contained in:
Rafael Guterres Jeffman
2022-05-09 14:01:31 -03:00
parent 7011283335
commit d3af87c731
7 changed files with 7 additions and 96 deletions

View File

@@ -92,19 +92,21 @@ pip install molecule[docker]>=3
Now you can start a test container using the following command:
```
molecule create -s centos-8
molecule create -s c8s
```
Note: Currently the containers available for running the tests are:
* fedora-latest
* centos-7
* centos-8
* c8s
* c9s
### Running the tests inside the container
To run the tests you will use pytest (works the same as for VMs).
```
RUN_TESTS_IN_DOCKER=1 IPA_SERVER_HOST=centos-8 pytest
RUN_TESTS_IN_DOCKER=1 IPA_SERVER_HOST=c8s pytest
```
### Cleaning up after tests
@@ -112,7 +114,7 @@ RUN_TESTS_IN_DOCKER=1 IPA_SERVER_HOST=centos-8 pytest
After running the tests you should probably destroy the test container using:
```
molecule destroy -s centos-8
molecule destroy -s c8s
```
See [Running the tests](#running-the-tests) section for more information on available options.