mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 06:10:22 +00:00
util: remove RadosNamespace from configmap
remove RadosNamespace from the configmap main section as its already added to the rbd section Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
parent
abf9dd339f
commit
1e05a0da7c
@ -40,8 +40,6 @@ const (
|
|||||||
type ClusterInfo struct {
|
type ClusterInfo struct {
|
||||||
// ClusterID is used for unique identification
|
// ClusterID is used for unique identification
|
||||||
ClusterID string `json:"clusterID"`
|
ClusterID string `json:"clusterID"`
|
||||||
// RadosNamespace is a rados namespace in the pool
|
|
||||||
RadosNamespace string `json:"radosNamespace"` // For backward compatibility. TODO: Remove this in 3.7.0
|
|
||||||
// Monitors is monitor list for corresponding cluster ID
|
// Monitors is monitor list for corresponding cluster ID
|
||||||
Monitors []string `json:"monitors"`
|
Monitors []string `json:"monitors"`
|
||||||
// CephFS contains CephFS specific options
|
// CephFS contains CephFS specific options
|
||||||
@ -130,13 +128,9 @@ func GetRadosNamespace(pathToConfig, clusterID string) (string, error) {
|
|||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
if cluster.RBD.RadosNamespace != "" {
|
|
||||||
return cluster.RBD.RadosNamespace, nil
|
return cluster.RBD.RadosNamespace, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
return cluster.RadosNamespace, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// CephFSSubvolumeGroup returns the subvolumeGroup for CephFS volumes. If not set, it returns the default value "csi".
|
// CephFSSubvolumeGroup returns the subvolumeGroup for CephFS volumes. If not set, it returns the default value "csi".
|
||||||
func CephFSSubvolumeGroup(pathToConfig, clusterID string) (string, error) {
|
func CephFSSubvolumeGroup(pathToConfig, clusterID string) (string, error) {
|
||||||
cluster, err := readClusterInfo(pathToConfig, clusterID)
|
cluster, err := readClusterInfo(pathToConfig, clusterID)
|
||||||
|
Loading…
Reference in New Issue
Block a user