We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c8b85 commit 68fcbd8Copy full SHA for 68fcbd8
pkg/driver/controller.go
@@ -218,6 +218,12 @@ func (cs *controller) init() error {
218
klog.Infof("initializing csi provisioning leak protection controller")
219
pvcInformer := kubeInformerFactory.Core().V1().PersistentVolumeClaims()
220
go pvcInformer.Informer().Run(stopCh)
221
+
222
+ if lvm.GoogleAnalyticsEnabled == "true" {
223
+ analytics.New().Build().InstallBuilder(true).Send()
224
+ go analytics.PingCheck()
225
+ }
226
227
if cs.leakProtection, err = csipv.NewLeakProtectionController(kubeClient,
228
pvcInformer, cs.driver.config.DriverName,
229
func(pvc *corev1.PersistentVolumeClaim, volumeName string) error {
0 commit comments