Changelog since 1.8
🚨 Breaking or Notable
Knative will now warn (but not error) when creating or updating a PodSpec
where containers have additional privilege due to unset SecurityContext values.
Explicitly setting these values to any setting, including high-privilege ones,
will disable this warning.These fields are:runAsNonRoot (empty means false)
allowPrivilegeEscalation (empty means true)
seccompProfile.type (empty string means Unconfined)
capabilities.drop (default maintains privileges, use ALL to drop unneeded linux capabilities) (#13399, @evankanderson)