Skip to content

Commit

Permalink
fix cache persistent default
Browse files Browse the repository at this point in the history
Signed-off-by: Huamin Chen <hchen@redhat.com>
  • Loading branch information
rootfs committed Jan 9, 2019
1 parent 3170ec4 commit a0600d2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rbd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var (
driverName = flag.String("drivername", "csi-rbdplugin", "name of the driver")
nodeID = flag.String("nodeid", "", "node id")
containerized = flag.Bool("containerized", true, "whether run as containerized")
metadataStorage = flag.String("metadatastorage", "", "metadata persistence method [node|k8s_configmap]")
metadataStorage = flag.String("metadatastorage", "node", "metadata persistence method [node|k8s_configmap]")
)

func main() {
Expand All @@ -50,6 +50,10 @@ func main() {
os.Exit(1)
}

if *metadataStorage != "node" && *metadataStorage != "k8s_configmap" {
glog.Errorf("invalid cache persistent option: %s", *metadataStorage)
os.Exit(1)
}
cp, err := util.NewCachePersister(*metadataStorage, *driverName)
if err != nil {
glog.Errorf("failed to define cache persistence method: %v", err)
Expand Down

0 comments on commit a0600d2

Please sign in to comment.