mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-20 10:20:51 +00:00
examples/podsecuritypolicy/rbac: fix names in comments and sync with examples repository.
This commit is contained in:
parent
b00c15f1a4
commit
1f0c5e1587
@ -1,5 +1,5 @@
|
||||
# privilegedPSP gives the privilegedPSP role
|
||||
# to the group privileged.
|
||||
# privileged-psp-users gives the privileged-psp-user role
|
||||
# to the group privileged-psp-users.
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRoleBinding
|
||||
metadata:
|
||||
@ -13,8 +13,8 @@ roleRef:
|
||||
kind: ClusterRole
|
||||
name: privileged-psp-user
|
||||
---
|
||||
# restrictedPSP grants the restrictedPSP role to
|
||||
# the groups restricted and privileged.
|
||||
# restricted-psp-users grants the restricted-psp-user role to
|
||||
# the groups restricted-psp-users and privileged-psp-users.
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRoleBinding
|
||||
metadata:
|
||||
@ -32,7 +32,7 @@ roleRef:
|
||||
name: restricted-psp-user
|
||||
---
|
||||
# edit grants edit role to the groups
|
||||
# restricted and privileged.
|
||||
# restricted-psp-users and privileged-psp-users.
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRoleBinding
|
||||
metadata:
|
||||
|
@ -16,6 +16,12 @@ spec:
|
||||
- '*'
|
||||
allowedCapabilities:
|
||||
- '*'
|
||||
hostPID: true
|
||||
hostIPC: true
|
||||
hostNetwork: true
|
||||
hostPorts:
|
||||
- min: 1
|
||||
max: 65536
|
||||
---
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: PodSecurityPolicy
|
||||
@ -38,4 +44,6 @@ spec:
|
||||
- 'configMap'
|
||||
- 'persistentVolumeClaim'
|
||||
- 'projected'
|
||||
|
||||
hostPID: false
|
||||
hostIPC: false
|
||||
hostNetwork: false
|
||||
|
@ -1,10 +1,9 @@
|
||||
# restrictedPSP grants access to use
|
||||
# the restricted PSP.
|
||||
# restricted-psp-user grants access to use the restricted PSP.
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRole
|
||||
metadata:
|
||||
name: restricted-psp-user
|
||||
rules:
|
||||
rules:
|
||||
- apiGroups:
|
||||
- extensions
|
||||
resources:
|
||||
@ -14,13 +13,12 @@ rules:
|
||||
verbs:
|
||||
- use
|
||||
---
|
||||
# privilegedPSP grants access to use the privileged
|
||||
# PSP.
|
||||
# privileged-psp-user grants access to use the privileged PSP.
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRole
|
||||
metadata:
|
||||
name: privileged-psp-user
|
||||
rules:
|
||||
rules:
|
||||
- apiGroups:
|
||||
- extensions
|
||||
resources:
|
||||
|
Loading…
Reference in New Issue
Block a user