Add security context support in dockershim

This commit is contained in:
Pengfei Ni
2016-11-04 19:54:07 +08:00
parent 3df60eb163
commit 3aee57d4ae
12 changed files with 496 additions and 71 deletions

View File

@@ -41,9 +41,9 @@ type SecurityContextProvider interface {
}
const (
dockerLabelUser string = "label:user"
dockerLabelRole string = "label:role"
dockerLabelType string = "label:type"
dockerLabelLevel string = "label:level"
dockerLabelDisable string = "label:disable"
DockerLabelUser string = "label:user"
DockerLabelRole string = "label:role"
DockerLabelType string = "label:type"
DockerLabelLevel string = "label:level"
DockerLabelDisable string = "label:disable"
)