Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use RockyLinux for EL8 build and test #308

Merged
merged 1 commit into from
Jan 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
distro: 'centos-7'
repo: 'unstable'
- ruby: '2.7'
name: 'centos8-stable'
distro: 'centos-8'
name: 'rockylinux8-stable'
distro: 'rockylinux-8'
repo: 'stable'
- ruby: '2.7'
name: 'centos8-unstable'
distro: 'centos-8'
name: 'rockylinux8-unstable'
distro: 'rockylinux-8'
repo: 'unstable'
- ruby: '2.7'
name: 'ubuntu18-stable'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM stackstorm/packagingtest:centos8-systemd
FROM stackstorm/packagingtest:rockylinux8-systemd

RUN mkdir -p /var/run/sshd
RUN useradd -d /home/<%= @username %> -m -s /bin/bash <%= @username %>
Expand Down
8 changes: 4 additions & 4 deletions .kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ platforms:
run_command: /sbin/init
volume:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
# CentOS8 with Systemd
- name: centos-8
# RockyLinux8 with Systemd
- name: rockylinux-8
driver_config:
platform: centos
dockerfile: .kitchen-docker/centos8/Dockerfile
platform: rockylinux
dockerfile: .kitchen-docker/rockylinux8/Dockerfile
run_command: /sbin/init
volume:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Ansible playbooks to deploy [StackStorm](https://github.com/stackstorm/st2).
* Ubuntu Bionic (18.04)
* Ubuntu Focal (20.04)
* RHEL7 / CentOS7
* RHEL8 / CentOS8
* RHEL8 / RockyLinux8

> If you're using the provided Vagrantfile, note that it uses Bionic by default.

Expand Down Expand Up @@ -105,7 +105,7 @@ These are the platforms we must support (must pass end-to-end testing):
* Ubuntu Bionic
* Ubuntu Focal
* CentOS7
* CentOS8
* RockyLinux8
* RHEL7 (via AWS)
* RHEL8 (via AWS)

Expand All @@ -122,7 +122,7 @@ Other distros:
```sh
vagrant up ubuntu20
vagrant up centos7
vagrant up centos8
vagrant up rockylinux8
```

## Other Installers
Expand All @@ -135,7 +135,7 @@ You might be interested in other methods to deploy StackStorm engine:
* Manual Instructions
* [Ubuntu 18.04](https://docs.stackstorm.com/install/u18.html)
* [Ubuntu 20.04](https://docs.stackstorm.com/install/u20.html)
* [RHEL8/CentOS8](https://docs.stackstorm.com/install/rhel8.html)
* [RHEL8/RockyLinux8](https://docs.stackstorm.com/install/rhel8.html)
* [RHEL7/CentOS7](https://docs.stackstorm.com/install/rhel7.html)

## Help
Expand Down
6 changes: 3 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ VIRTUAL_MACHINES = {
:hostname => 'ansible-st2-centos7',
:box => 'centos/7',
},
:centos8 => {
:hostname => 'ansible-st2-centos8',
:box => 'centos/8',
:rockylinux8 => {
:hostname => 'ansible-st2-rockylinux8',
:box => 'rockylinux/8',
},
}

Expand Down