Fix remnants from SelinuxProcessLabel to SelinuxLabel rename
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
parent
6e08c6983e
commit
e87d7d2ba9
|
@ -132,8 +132,8 @@
|
||||||
"id": "https://opencontainers.org/schema/bundle/process/linux/apparmorProfile",
|
"id": "https://opencontainers.org/schema/bundle/process/linux/apparmorProfile",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"selinuxProcessLabel": {
|
"selinuxLabel": {
|
||||||
"id": "https://opencontainers.org/schema/bundle/process/linux/selinuxProcessLabel",
|
"id": "https://opencontainers.org/schema/bundle/process/linux/selinuxLabel",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"noNewPrivileges": {
|
"noNewPrivileges": {
|
||||||
|
|
|
@ -49,7 +49,7 @@ type Process struct {
|
||||||
|
|
||||||
// ApparmorProfile specified the apparmor profile for the container. (this field is platform dependent)
|
// ApparmorProfile specified the apparmor profile for the container. (this field is platform dependent)
|
||||||
ApparmorProfile string `json:"apparmorProfile,omitempty" platform:"linux"`
|
ApparmorProfile string `json:"apparmorProfile,omitempty" platform:"linux"`
|
||||||
// SelinuxProcessLabel specifies the selinux context that the container process is run as. (this field is platform dependent)
|
// SelinuxLabel specifies the selinux context that the container process is run as. (this field is platform dependent)
|
||||||
SelinuxLabel string `json:"selinuxLabel,omitempty" platform:"linux"`
|
SelinuxLabel string `json:"selinuxLabel,omitempty" platform:"linux"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue