-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit switches to actual patches applied in rpmbuild process so the build can fail if a patch doesn't apply. Signed-off-by: Lokesh Mandvekar <[email protected]>
- Loading branch information
Showing
9 changed files
with
122 additions
and
6 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,13 @@ | ||
diff --git a/pkg/config/containers.conf b/pkg/config/containers.conf | ||
index c00efecb..a8183ee6 100644 | ||
--- a/pkg/config/containers.conf | ||
+++ b/pkg/config/containers.conf | ||
@@ -191,7 +191,7 @@ default_sysctls = [ | ||
|
||
# Logging driver for the container. Available options: k8s-file and journald. | ||
# | ||
-#log_driver = "k8s-file" | ||
+log_driver = "journald" | ||
|
||
# Maximum size allowed for the container log file. Negative numbers indicate | ||
# that no size limit is imposed. If positive, it must be >= 8192 to match or |
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,13 @@ | ||
diff --git a/pkg/config/containers.conf b/pkg/config/containers.conf | ||
index c00efecb..cc583281 100644 | ||
--- a/pkg/config/containers.conf | ||
+++ b/pkg/config/containers.conf | ||
@@ -439,7 +439,7 @@ default_sysctls = [ | ||
# docker-archive formats. It is also ignored when the manifest format is set | ||
# to v2s2. | ||
# | ||
-#compression_format = "gzip" | ||
+compression_format = "zstd:chunked" | ||
|
||
# The compression level to use when pushing an image. | ||
# Valid options depend on the compression format used. |
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,15 @@ | ||
diff --git a/registries.conf b/registries.conf | ||
index d424dc59..3470df34 100644 | ||
--- a/registries.conf | ||
+++ b/registries.conf | ||
@@ -18,7 +18,9 @@ | ||
# of these registries, it should be added at the end of the list. | ||
# | ||
# # An array of host[:port] registries to try when pulling an unqualified image, in order. | ||
-# unqualified-search-registries = ["example.com"] | ||
+unqualified-search-registries = ["registry.fedoraproject.org", "registry.access.redhat.com", "docker.io"] | ||
+ | ||
+short-name-mode="enforcing" | ||
# | ||
# [[registry]] | ||
# # The "prefix" field is used to choose the relevant [[registry]] TOML table; |
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,15 @@ | ||
diff --git a/registries.conf b/registries.conf | ||
index d424dc59..88327606 100644 | ||
--- a/registries.conf | ||
+++ b/registries.conf | ||
@@ -18,7 +18,9 @@ | ||
# of these registries, it should be added at the end of the list. | ||
# | ||
# # An array of host[:port] registries to try when pulling an unqualified image, in order. | ||
-# unqualified-search-registries = ["example.com"] | ||
+unqualified-search-registries = ["registry.access.redhat.com", "registry.redhat.io", "docker.io"] | ||
+ | ||
+short-name-mode="enforcing" | ||
# | ||
# [[registry]] | ||
# # The "prefix" field is used to choose the relevant [[registry]] TOML table; |
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 @@ | ||
diff --git a/pkg/seccomp/seccomp.json b/pkg/seccomp/seccomp.json | ||
index 7a82be5d..ffc2ba63 100644 | ||
--- a/pkg/seccomp/seccomp.json | ||
+++ b/pkg/seccomp/seccomp.json | ||
@@ -417,6 +417,7 @@ | ||
"signalfd4", | ||
"sigprocmask", | ||
"sigreturn", | ||
+ "socket", | ||
"socketcall", | ||
"socketpair", | ||
"splice", | ||
@@ -1127,4 +1128,4 @@ | ||
"excludes": {} | ||
} | ||
] | ||
-} | ||
\ No newline at end of file | ||
+} |
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,13 @@ | ||
diff --git a/storage.conf b/storage.conf | ||
index 7ac8fdf8f..71a614b98 100644 | ||
--- a/storage.conf | ||
+++ b/storage.conf | ||
@@ -112,7 +112,7 @@ additionalimagestores = [ | ||
#mount_program = "/usr/bin/fuse-overlayfs" | ||
|
||
# mountopt specifies comma separated list of extra mount options | ||
-mountopt = "nodev" | ||
+mountopt = "nodev,metacopy=on" | ||
|
||
# Set to skip a PRIVATE bind mount on the storage home directory. | ||
# This is a "string bool": "false" | "true" (cannot be native TOML boolean) |
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