Add masked paths and readonly paths to config
Podman and Buildah have gone out of sync, this will allow us to make sure they stay in sync. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
parent
4544d2a2b7
commit
274a84c633
|
|
@ -37,6 +37,30 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
DefaultMaskedPaths = []string{
|
||||||
|
"/proc/acpi",
|
||||||
|
"/proc/kcore",
|
||||||
|
"/proc/keys",
|
||||||
|
"/proc/latency_stats",
|
||||||
|
"/proc/sched_debug",
|
||||||
|
"/proc/scsi",
|
||||||
|
"/proc/timer_list",
|
||||||
|
"/proc/timer_stats",
|
||||||
|
"/sys/dev/block",
|
||||||
|
"/sys/devices/virtual/powercap",
|
||||||
|
"/sys/firmware",
|
||||||
|
"/sys/fs/selinux",
|
||||||
|
}
|
||||||
|
|
||||||
|
DefaultReadOnlyPaths = []string{
|
||||||
|
"/proc/asound",
|
||||||
|
"/proc/bus",
|
||||||
|
"/proc/fs",
|
||||||
|
"/proc/irq",
|
||||||
|
"/proc/sys",
|
||||||
|
"/proc/sysrq-trigger",
|
||||||
|
}
|
||||||
|
|
||||||
// DefaultInfraImage is the default image to run as infrastructure containers in pods.
|
// DefaultInfraImage is the default image to run as infrastructure containers in pods.
|
||||||
DefaultInfraImage = ""
|
DefaultInfraImage = ""
|
||||||
// DefaultRootlessSHMLockPath is the default path for rootless SHM locks.
|
// DefaultRootlessSHMLockPath is the default path for rootless SHM locks.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue