You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is your environment(Kubernetes version, Fluid version, etc.)
Fluid master version.
Describe the bug
When trying to mount multiple mount points within one Dataset, there are two levels of options for different mount points: mountpoint-level options(i.e. Dataset.spec.mounts[*].options) and dataset-level options (i.e. Dataset.spec.sharedOptions).
mountpoint-level options are defined in each Dataset.spec.mounts[*] so they should override the Dataset.spec.sharedOptions. However, mountpoint-level options affect options defined in other mounts which is not expected.
What is your environment(Kubernetes version, Fluid version, etc.)
Fluid master version.
Describe the bug
When trying to mount multiple mount points within one Dataset, there are two levels of options for different mount points: mountpoint-level options(i.e. Dataset.spec.mounts[*].options) and dataset-level options (i.e. Dataset.spec.sharedOptions).
mountpoint-level options are defined in each
Dataset.spec.mounts[*]
so they should override theDataset.spec.sharedOptions
. However, mountpoint-level options affect options defined in other mounts which is not expected.For instance like:
So the options for "test1" should be
foo=bar1
and the options for "test2" should befoo=bar2
. However, the configmap looks like:where options for both "test1" and "test2" are
foo=bar2
.What you expect to happen:
mountpoint-level options should not affect options defined in
Dataset.spec.sharedOptions
How to reproduce it
Additional Information
The text was updated successfully, but these errors were encountered: