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
fallbackRequisiteZonesFlag=flag.String("fallback-requisite-zones", "", "Comma separated list of requisite zones that will be used if there are not sufficient zones present in requisite topologies when provisioning a disk")
80
76
enableStoragePoolsFlag=flag.Bool("enable-storage-pools", false, "If set to true, the CSI Driver will allow volumes to be provisioned in Storage Pools")
81
77
enableHdHAFlag=flag.Bool("allow-hdha-provisioning", false, "If set to true, will allow the driver to provision Hyperdisk-balanced High Availability disks")
82
-
enableDataCacheFlag=flag.Bool("enable-data-cache", false, "If set to true, the CSI Driver will allow volumes to be provisioned with data cache configuration")
78
+
enableDataCacheFlag=flag.Bool("enable-data-cache", false, "If set to true, the CSI Driver will allow volumes to be provisioned with Data Cache configuration")
83
79
nodeName=flag.String("node-name", "", "The node this driver is running on")
84
80
85
81
multiZoneVolumeHandleDiskTypesFlag=flag.String("multi-zone-volume-handle-disk-types", "", "Comma separated list of allowed disk types that can use the multi-zone volumeHandle. Used only if --multi-zone-volume-handle-enable")
@@ -102,9 +98,7 @@ var (
102
98
)
103
99
104
100
const (
105
-
driverName="pd.csi.storage.gke.io"
106
-
dataCacheLabel="datacache-storage-gke-io"
107
-
dataCacheLabelValue="enabled"
101
+
driverName="pd.csi.storage.gke.io"
108
102
)
109
103
110
104
funcinit() {
@@ -136,7 +130,7 @@ func handle() {
136
130
ifversion=="" {
137
131
klog.Fatalf("version must be set at compile time")
138
132
}
139
-
klog.V(2).Infof("Driver vendor version %v", version)
133
+
klog.V(4).Infof("Driver vendor version %v", version)
140
134
141
135
// Start tracing as soon as possible
142
136
if*enableOtelTracing {
@@ -264,10 +258,10 @@ func handle() {
264
258
265
259
if*enableDataCacheFlag {
266
260
ifnodeName==nil||*nodeName=="" {
267
-
klog.Errorf("Data cache enabled, but --node-name not passed")
261
+
klog.Errorf("Data Cache enabled, but --node-name not passed")
0 commit comments