From 3c2baf4e9657ed49978ff7f5ab3255bc85ff9ba7 Mon Sep 17 00:00:00 2001 From: bells17 Date: Fri, 21 Feb 2020 00:44:44 +0900 Subject: [PATCH] Add comments --- pkg/utils/util.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/utils/util.go b/pkg/utils/util.go index 4c135662..0bd64435 100644 --- a/pkg/utils/util.go +++ b/pkg/utils/util.go @@ -53,11 +53,11 @@ const ( // fields in subsequent CSI calls or Kubernetes API objects. csiParameterPrefix = "csi.storage.k8s.io/" - PrefixedSnapshotterSecretNameKey = csiParameterPrefix + "snapshotter-secret-name" - PrefixedSnapshotterSecretNamespaceKey = csiParameterPrefix + "snapshotter-secret-namespace" + PrefixedSnapshotterSecretNameKey = csiParameterPrefix + "snapshotter-secret-name" // Prefixed name key for DeleteSnapshot secret + PrefixedSnapshotterSecretNamespaceKey = csiParameterPrefix + "snapshotter-secret-namespace" // Prefixed namespace key for DeleteSnapshot secret - PrefixedSnapshotterListSecretNameKey = csiParameterPrefix + "snapshotter-list-secret-name" - PrefixedSnapshotterListSecretNamespaceKey = csiParameterPrefix + "snapshotter-list-secret-namespace" + PrefixedSnapshotterListSecretNameKey = csiParameterPrefix + "snapshotter-list-secret-name" // Prefixed name key for ListSnapshots secret + PrefixedSnapshotterListSecretNamespaceKey = csiParameterPrefix + "snapshotter-list-secret-namespace" // Prefixed namespace key for ListSnapshots secret // Name of finalizer on VolumeSnapshotContents that are bound by VolumeSnapshots VolumeSnapshotContentFinalizer = "snapshot.storage.kubernetes.io/volumesnapshotcontent-bound-protection"