ceph-csi-rbd 3.10.1 with Talos 1.6.1 nodeplugin fails with mkdir /etc/selinux: read-only file system
#8163
-
Hello, I'm trying to deploy the ceph-csi-rbd 3.10.1 chart onto Talos, but the
I've read through Local Storage and #8016, but it's not clear how I should resolve this issue. My hypothesis is I need to reconfigure the DaemonSet to something like this, but I have doubts: volumes:
- hostPath:
- path: /etc/selinux
+ path: /var/mnt/etc-selinux
type: ""
name: etc-selinux |
Beta Was this translation helpful? Give feedback.
Answered by
jeffmccune
Jan 17, 2024
Replies: 1 comment
-
Solved, I set the @@ -789,9 +789,6 @@ spec:
name: host-mount
- mountPath: /sys
name: host-sys
- - mountPath: /etc/selinux
- name: etc-selinux
- readOnly: true
- mountPath: /lib/modules
name: lib-modules
readOnly: true
@@ -877,9 +874,6 @@ spec:
- hostPath:
path: /sys
name: host-sys
- - hostPath:
- path: /etc/selinux
- name: etc-selinux
- hostPath:
path: /lib/modules
name: lib-modules
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jeffmccune
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solved, I set the
selinuxMount: false
chart value and it solved the problem: