runcs: add --EXPERIMENTAL-reproduce-nat to allowlist of overridable flags

PiperOrigin-RevId: 578599679
This commit is contained in:
Kevin Krakauer
2023-11-01 12:18:28 -07:00
committed by gVisor bot
parent e1e7edcc1b
commit ad77778bee
+6 -5
View File
@@ -141,11 +141,12 @@ func RegisterFlags(flagSet *flag.FlagSet) {
var overrideAllowlist = map[string]struct {
check func(name string, value string) error
}{
"debug": {},
"strace": {},
"strace-syscalls": {},
"strace-log-size": {},
"host-uds": {},
"debug": {},
"strace": {},
"strace-syscalls": {},
"strace-log-size": {},
"host-uds": {},
"EXPERIMENTAL-reproduce-nat": {},
"oci-seccomp": {check: checkOciSeccomp},
}