I would want to enable seccomp on my openshift v4.6 to use RuntimeDefault
securityContext:
seccompProfile:
type: RuntimeDefault
when i run the command below i can see that i've allowPrivilegeEscalation set to true
$ oc get scc restricted
allowPrivilegeEscalation: true
allowPrivilegeContainer: false
In my deployment yaml file i tried to defined the parameter to false securityContext: allowPrivilegeEscalation: false
However this does not change anything
Do i've to define a custom SecurityContextConstraints to overwrite the parameters ?