-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use '=' instead of ':' separator on labels #793
Conversation
…y Docker Signed-off-by: Bryan Boreham <[email protected]>
@rhatdan PTAL |
LGTM |
2 similar comments
LGTM |
LGTM |
@thaJeztah this must be reverted as well, as in, |
} | ||
|
||
// DisableSecOpt returns a security opt that can be used to disabling SELinux | ||
// labeling support for future container processes | ||
func DisableSecOpt() []string { | ||
return []string{"label:disable"} | ||
return []string{"label=disable"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this label=
is docker specific, while here in libcontainer there shouldn't be any mention to docker. DisableSecOpt
and DupSecOpt
should just deal with disable,role,type,level
. Both CRI-O and docker should just pass disable,role,type.level
stuff and not label=...
.
…fg-link-target config-solaris: Restore 'zonecfg.1m_2' link targets
Because Docker has deprecated ':' in moby/moby#21232
Triggered by moby/moby#22413