-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
manifests: Split container engines into sub-manifests
- Split podman, moby-engine and related packages into distinct sub-manifests - Include both container engines by default - Ensure that they are excluded if specified as such
- Loading branch information
Showing
6 changed files
with
51 additions
and
17 deletions.
There are no files selected for viewing
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,6 @@ | ||
packages: | ||
# CL shipped this | ||
- moby-engine | ||
# Already pulled in by moby-engine, but let's be explicit. Typhoon uses it. | ||
- containerd | ||
- runc |
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,8 @@ | ||
exclude-packages: | ||
- crun | ||
- runc | ||
- podman | ||
- moby-engine | ||
- containerd | ||
- containernetworking-plugins | ||
- podman-plugins |
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,19 @@ | ||
packages: | ||
- podman | ||
- crun | ||
# Include toolbox here as it pulls podman | ||
- toolbox | ||
|
||
# Support for wasm runtime: https://github.com/coreos/fedora-coreos-tracker/issues/1375 | ||
packages-x86_64: | ||
- crun-wasm wasmedge-rt | ||
packages-aarch64: | ||
- crun-wasm wasmedge-rt | ||
|
||
postprocess: | ||
# Enable SELinux booleans used by OpenShift | ||
# https://github.com/coreos/fedora-coreos-tracker/issues/284 | ||
- | | ||
#!/usr/bin/env bash | ||
set -xeuo pipefail | ||
setsebool -P -N container_use_cephfs on # RHBZ#1692369 |
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