2018-08-22 16:16:13 +00:00
|
|
|
---
|
|
|
|
apiVersion: policy/v1beta1
|
|
|
|
kind: PodSecurityPolicy
|
|
|
|
metadata:
|
|
|
|
name: restricted
|
|
|
|
annotations:
|
2020-05-27 21:02:02 +00:00
|
|
|
seccomp.security.alpha.kubernetes.io/defaultProfileName: 'runtime/default'
|
|
|
|
seccomp.security.alpha.kubernetes.io/allowedProfileNames: 'docker/default,runtime/default'
|
2018-08-22 16:16:13 +00:00
|
|
|
{% if apparmor_enabled %}
|
|
|
|
apparmor.security.beta.kubernetes.io/defaultProfileName: 'runtime/default'
|
|
|
|
apparmor.security.beta.kubernetes.io/allowedProfileNames: 'runtime/default'
|
|
|
|
{% endif %}
|
|
|
|
labels:
|
|
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
|
|
spec:
|
2020-04-15 10:18:02 +00:00
|
|
|
{{ podsecuritypolicy_restricted_spec | to_yaml(indent=2, width=1337) | indent(width=2) }}
|
2018-08-22 16:16:13 +00:00
|
|
|
---
|
|
|
|
apiVersion: policy/v1beta1
|
|
|
|
kind: PodSecurityPolicy
|
|
|
|
metadata:
|
|
|
|
name: privileged
|
|
|
|
annotations:
|
|
|
|
seccomp.security.alpha.kubernetes.io/allowedProfileNames: '*'
|
|
|
|
labels:
|
|
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
|
|
spec:
|
2020-04-15 10:18:02 +00:00
|
|
|
{{ podsecuritypolicy_privileged_spec | to_yaml(indent=2, width=1337) | indent(width=2) }}
|