You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
618 B
16 lines
618 B
# Seccomp profile must be explicitly set to one of the allowed values. Both the Unconfined profile and the absence of a profile are prohibited.
|
|
# According to https://kubernetes.io/docs/concepts/security/pod-security-standards/#:~:text=undefined/null-,Seccomp%20(v1.19%2B),-Seccomp%20profile%20must
|
|
# This is done to enable 'restricted' level security standards for the pods.
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: istiod
|
|
namespace: istio-system
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: discovery
|
|
securityContext:
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
|