mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
cleanup: use block comment for ClusterInfo example
Adjusted the mix of tabs and the spaces and also
used block comment for better readability.
Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
(cherry picked from commit eb4bfb7326
)
This commit is contained in:
parent
f8a19c8cbb
commit
a901997542
@ -60,24 +60,22 @@ type ClusterInfo struct {
|
||||
}
|
||||
|
||||
// Expected JSON structure in the passed in config file is,
|
||||
// [
|
||||
// {
|
||||
// "clusterID": "<cluster-id>",
|
||||
// "rbd": {
|
||||
// "radosNamespace": "<rados-namespace>"
|
||||
// },
|
||||
// "monitors":
|
||||
// [
|
||||
// "<monitor-value>",
|
||||
// "<monitor-value>",
|
||||
// ...
|
||||
// ],
|
||||
// "cephFS": {
|
||||
// "subvolumeGroup": "<subvolumegroup for cephfs volumes>"
|
||||
// }
|
||||
// },
|
||||
// ...
|
||||
// ].
|
||||
// nolint:godot // example json content should not contain unwanted dot.
|
||||
/*
|
||||
[{
|
||||
"clusterID": "<cluster-id>",
|
||||
"rbd": {
|
||||
"radosNamespace": "<rados-namespace>"
|
||||
},
|
||||
"monitors": [
|
||||
"<monitor-value>",
|
||||
"<monitor-value>"
|
||||
],
|
||||
"cephFS": {
|
||||
"subvolumeGroup": "<subvolumegroup for cephfs volumes>"
|
||||
}
|
||||
}]
|
||||
*/
|
||||
func readClusterInfo(pathToConfig, clusterID string) (*ClusterInfo, error) {
|
||||
var config []ClusterInfo
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user