Skip to content

Commit 3c2baf4

Browse files
committed
Add comments
1 parent 7cbcf6a commit 3c2baf4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/utils/util.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ const (
5353
// fields in subsequent CSI calls or Kubernetes API objects.
5454
csiParameterPrefix = "csi.storage.k8s.io/"
5555

56-
PrefixedSnapshotterSecretNameKey = csiParameterPrefix + "snapshotter-secret-name"
57-
PrefixedSnapshotterSecretNamespaceKey = csiParameterPrefix + "snapshotter-secret-namespace"
56+
PrefixedSnapshotterSecretNameKey = csiParameterPrefix + "snapshotter-secret-name" // Prefixed name key for DeleteSnapshot secret
57+
PrefixedSnapshotterSecretNamespaceKey = csiParameterPrefix + "snapshotter-secret-namespace" // Prefixed namespace key for DeleteSnapshot secret
5858

59-
PrefixedSnapshotterListSecretNameKey = csiParameterPrefix + "snapshotter-list-secret-name"
60-
PrefixedSnapshotterListSecretNamespaceKey = csiParameterPrefix + "snapshotter-list-secret-namespace"
59+
PrefixedSnapshotterListSecretNameKey = csiParameterPrefix + "snapshotter-list-secret-name" // Prefixed name key for ListSnapshots secret
60+
PrefixedSnapshotterListSecretNamespaceKey = csiParameterPrefix + "snapshotter-list-secret-namespace" // Prefixed namespace key for ListSnapshots secret
6161

6262
// Name of finalizer on VolumeSnapshotContents that are bound by VolumeSnapshots
6363
VolumeSnapshotContentFinalizer = "snapshot.storage.kubernetes.io/volumesnapshotcontent-bound-protection"

0 commit comments

Comments
 (0)