mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
0be7024726
Problem: -------- 1. rbd-nbd by default logs to /var/log/ceph/ceph-client.admin.log, Unfortunately, container doesn't have /var/log/ceph directory hence rbd-nbd is not logging now. 2. Rbd-nbd logs are not persistent across nodeplugin restarts. Solution: -------- Provide a host path so that log directory is made available, and the logs persist on the hostnode across container restarts. Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
79 lines
1.8 KiB
YAML
79 lines
1.8 KiB
YAML
---
|
|
apiVersion: policy/v1beta1
|
|
kind: PodSecurityPolicy
|
|
metadata:
|
|
name: rbd-csi-nodeplugin-psp
|
|
spec:
|
|
allowPrivilegeEscalation: true
|
|
allowedCapabilities:
|
|
- 'SYS_ADMIN'
|
|
fsGroup:
|
|
rule: RunAsAny
|
|
privileged: true
|
|
hostNetwork: true
|
|
hostPID: true
|
|
runAsUser:
|
|
rule: RunAsAny
|
|
seLinux:
|
|
rule: RunAsAny
|
|
supplementalGroups:
|
|
rule: RunAsAny
|
|
volumes:
|
|
- 'configMap'
|
|
- 'emptyDir'
|
|
- 'projected'
|
|
- 'secret'
|
|
- 'downwardAPI'
|
|
- 'hostPath'
|
|
allowedHostPaths:
|
|
- pathPrefix: '/dev'
|
|
readOnly: false
|
|
- pathPrefix: '/run/mount'
|
|
readOnly: false
|
|
- pathPrefix: '/sys'
|
|
readOnly: false
|
|
- pathPrefix: '/etc/selinux'
|
|
readOnly: true
|
|
- pathPrefix: '/lib/modules'
|
|
readOnly: true
|
|
- pathPrefix: '/var/lib/kubelet/pods'
|
|
readOnly: false
|
|
- pathPrefix: '/var/log/ceph'
|
|
readOnly: false
|
|
- pathPrefix: '/var/lib/kubelet/plugins/rbd.csi.ceph.com'
|
|
readOnly: false
|
|
- pathPrefix: '/var/lib/kubelet/plugins_registry'
|
|
readOnly: false
|
|
- pathPrefix: '/var/lib/kubelet/plugins'
|
|
readOnly: false
|
|
|
|
---
|
|
kind: Role
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: rbd-csi-nodeplugin-psp
|
|
# replace with non-default namespace name
|
|
namespace: default
|
|
rules:
|
|
- apiGroups: ['policy']
|
|
resources: ['podsecuritypolicies']
|
|
verbs: ['use']
|
|
resourceNames: ['rbd-csi-nodeplugin-psp']
|
|
|
|
---
|
|
kind: RoleBinding
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: rbd-csi-nodeplugin-psp
|
|
# replace with non-default namespace name
|
|
namespace: default
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: rbd-csi-nodeplugin
|
|
# replace with non-default namespace name
|
|
namespace: default
|
|
roleRef:
|
|
kind: Role
|
|
name: rbd-csi-nodeplugin-psp
|
|
apiGroup: rbac.authorization.k8s.io
|