specs-go/config: Fix 'SelinuxProcessLabel' -> 'SelinuxLabel'
The label changed in5a8a779f
(Move process specific settings to process, 2016-03-02, #329) and7bf06d53
(source and schema: differentiate with examples, 2015-12-18, #276) missed this instance when rebasing around #329. Signed-off-by: W. Trevor King <wking@tremily.us>
This commit is contained in:
parent
fae9a3e3ac
commit
59333dcf45
|
@ -39,7 +39,7 @@ type Process struct {
|
|||
Capabilities []string `json:"capabilities,omitempty"`
|
||||
// ApparmorProfile specified the apparmor profile for the container.
|
||||
ApparmorProfile string `json:"apparmorProfile,omitempty"`
|
||||
// SelinuxProcessLabel specifies the selinux context that the container process is run as.
|
||||
// SelinuxLabel specifies the selinux context that the container process is run as.
|
||||
SelinuxLabel string `json:"selinuxLabel,omitempty"`
|
||||
// NoNewPrivileges controls whether additional privileges could be gained by processes in the container.
|
||||
NoNewPrivileges bool `json:"noNewPrivileges,omitempty"`
|
||||
|
|
Loading…
Reference in New Issue