I have deployed rook using the official helm charts.
On my Kubernetes nodes, the host filesystem is xfs, but rook by default expects an ext4 filesystem.
So I overwrote the parameter cephFileSystems[0].storageClass.parameters.csi.storage.k8s.io/fstype
in the helm chart with the value xfs
.
But now, helm generates a Kubernetes manifest of
allowVolumeExpansion: true
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
annotations:
storageclass.kubernetes.io/is-default-class: 'false'
labels:
argocd.argoproj.io/instance: rook-operator
name: ceph-filesystem
parameters:
clusterID: rook-ceph
csi:
storage:
k8s:
io/fstype: xfs
[...]
But the CRD io.k8s.api.storage.v1.StorageClass in Kubernetes does not accept it with the error:
error validating data: ValidationError(StorageClass.parameters.csi): invalid type for io.k8s.api.storage.v1.StorageClass.parameters: got "map", expected "string"
How do I correctly set xfs
as filesystem for the OSDs?
Thanks in advance.
Best regards, rforberger
I think I solved it myself.
I changed
to
in the values.yaml file of the official rook-ceph-cluster helm chart.
This way the generated manifest looks like:
which is fine.