Skip to content
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
4 changes: 4 additions & 0 deletions lib/vanagon/platform/defaults/redhatfips-8-x86_64.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,8 @@
plat.provision_with "dnf install -y --allowerasing #{packages.join(' ')}"
plat.install_build_dependencies_with "dnf install -y --allowerasing "
plat.vmpooler_template "redhat-fips-8-x86_64"
# NOTE: You must run the build on a FIPS-enabled Linux host in order for this platform to
# build correctly with the Docker engine.
plat.docker_image "almalinux:8"
plat.docker_arch "linux/amd64"
end
6 changes: 5 additions & 1 deletion lib/vanagon/platform/defaults/redhatfips-9-x86_64.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@
rsync
swig
systemtap-sdt-devel
yum-utils
zlib-devel
)

plat.provision_with "dnf install -y yum-utils && dnf config-manager --set-enabled crb"
plat.provision_with "dnf install -y --allowerasing #{packages.join(' ')}"
plat.install_build_dependencies_with "dnf install -y --allowerasing "
plat.vmpooler_template "redhat-fips-9-x86_64"
# NOTE: You must run the build on a FIPS-enabled Linux host in order for this platform to
# build correctly with the Docker engine.
plat.docker_image "almalinux:9"
plat.docker_arch "linux/amd64"
end