mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
deploy: support omap data store in radosnamespace via cli argument
Signed-off-by: Andreas <zerotens@users.noreply.github.com>
This commit is contained in:
parent
89ccbc8fba
commit
7afddb41d6
@ -9,5 +9,6 @@
|
||||
- deploy: instanceID can be optionally configured for ceph-csi charts in [PR](https://github.com/ceph/ceph-csi/pull/4666)
|
||||
- rbd: add support for flattenMode option for replication in [PR](https://github.com/ceph/ceph-csi/pull/4678)
|
||||
- cephfs: support omap data store in radosnamespace via cli argument in [PR](https://github.com/ceph/ceph-csi/pull/4652)
|
||||
- deploy: radosNamespaceCephFS can be configured for ceph-csi-cephfs chart in [PR](https://github.com/ceph/ceph-csi/pull/4652)
|
||||
|
||||
## NOTE
|
||||
|
@ -201,6 +201,7 @@ charts and their default values.
|
||||
| `CSIDriver.fsGroupPolicy` | Specifies the fsGroupPolicy for the CSI driver object | `File` |
|
||||
| `CSIDriver.seLinuxMount` | Specify for efficient SELinux volume relabeling | `true` |
|
||||
| `instanceID` | Unique ID distinguishing this instance of Ceph CSI among other instances, when sharing Ceph clusters across CSI instances for provisioning. | ` ` |
|
||||
| `radosNamespaceCephFS` | CephFS RadosNamespace used to store CSI specific objects and keys. | ` ` |
|
||||
|
||||
### Command Line
|
||||
|
||||
|
@ -62,6 +62,9 @@ spec:
|
||||
{{- if .Values.instanceID }}
|
||||
- "--instanceid={{ .Values.instanceID }}"
|
||||
{{- end }}
|
||||
{{- if .Values.radosNamespaceCephFS }}
|
||||
- "--radosnamespacecephfs={{ .Values.radosNamespaceCephFS }}"
|
||||
{{- end }}
|
||||
{{- if .Values.nodeplugin.profiling.enabled }}
|
||||
- "--enableprofiling={{ .Values.nodeplugin.profiling.enabled }}"
|
||||
{{- end }}
|
||||
|
@ -82,6 +82,9 @@ spec:
|
||||
{{- if .Values.instanceID }}
|
||||
- "--instanceid={{ .Values.instanceID }}"
|
||||
{{- end }}
|
||||
{{- if .Values.radosNamespaceCephFS }}
|
||||
- "--radosnamespacecephfs={{ .Values.radosNamespaceCephFS }}"
|
||||
{{- end }}
|
||||
{{- if .Values.provisioner.profiling.enabled }}
|
||||
- "--enableprofiling={{ .Values.provisioner.profiling.enabled }}"
|
||||
{{- end }}
|
||||
|
@ -372,6 +372,8 @@ configMapName: ceph-csi-config
|
||||
externallyManagedConfigmap: false
|
||||
# Name of the configmap used for ceph.conf
|
||||
cephConfConfigMapName: ceph-config
|
||||
# CephFS RadosNamespace used to store CSI specific objects and keys.
|
||||
# radosNamespaceCephFS: csi
|
||||
# Unique ID distinguishing this instance of Ceph CSI among other instances,
|
||||
# when sharing Ceph clusters across CSI instances for provisioning
|
||||
# instanceID: default
|
||||
|
Loading…
Reference in New Issue
Block a user