mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 10:33:35 +00:00
cleanup: resolve godot linter
This commit resolves godot linter issue which says "Comment should end in a period (godot)". Updates: #1586 Signed-off-by: Yati Padia <ypadia@redhat.com>
This commit is contained in:
@ -9,14 +9,14 @@ import (
|
||||
|
||||
// #nosec because of the word `Secret`
|
||||
const (
|
||||
// ceph user names
|
||||
// ceph user names.
|
||||
keyringRBDProvisionerUsername = "cephcsi-rbd-provisioner"
|
||||
keyringRBDNodePluginUsername = "cephcsi-rbd-node"
|
||||
keyringRBDNamespaceProvisionerUsername = "cephcsi-rbd-ns-provisioner"
|
||||
keyringRBDNamespaceNodePluginUsername = "cephcsi-rbd-ns-node"
|
||||
keyringCephFSProvisionerUsername = "cephcsi-cephfs-provisioner"
|
||||
keyringCephFSNodePluginUsername = "cephcsi-cephfs-node"
|
||||
// secret names
|
||||
// secret names.
|
||||
rbdNodePluginSecretName = "cephcsi-rbd-node"
|
||||
rbdProvisionerSecretName = "cephcsi-rbd-provisioner"
|
||||
rbdNamespaceNodePluginSecretName = "cephcsi-rbd-ns-node"
|
||||
|
@ -30,7 +30,7 @@ var (
|
||||
rbdDeploymentName = "csi-rbdplugin-provisioner"
|
||||
rbdDaemonsetName = "csi-rbdplugin"
|
||||
defaultRBDPool = "replicapool"
|
||||
// Topology related variables
|
||||
// Topology related variables.
|
||||
nodeRegionLabel = "test.failure-domain/region"
|
||||
regionValue = "testregion"
|
||||
nodeZoneLabel = "test.failure-domain/zone"
|
||||
@ -40,7 +40,7 @@ var (
|
||||
rbdTopologyPool = "newrbdpool"
|
||||
rbdTopologyDataPool = "replicapool" // NOTE: should be different than rbdTopologyPool for test to be effective
|
||||
|
||||
// yaml files required for deployment
|
||||
// yaml files required for deployment.
|
||||
pvcPath = rbdExamplePath + "pvc.yaml"
|
||||
appPath = rbdExamplePath + "pod.yaml"
|
||||
rawPvcPath = rbdExamplePath + "raw-block-pvc.yaml"
|
||||
|
@ -35,7 +35,7 @@ const (
|
||||
retainPolicy = v1.PersistentVolumeReclaimRetain
|
||||
// deletePolicy is the default policy in E2E.
|
||||
deletePolicy = v1.PersistentVolumeReclaimDelete
|
||||
// Default key and label for Listoptions
|
||||
// Default key and label for Listoptions.
|
||||
appKey = "app"
|
||||
appLabel = "write-data-in-pod"
|
||||
|
||||
@ -43,7 +43,7 @@ const (
|
||||
)
|
||||
|
||||
var (
|
||||
// cli flags
|
||||
// cli flags.
|
||||
deployTimeout int
|
||||
deployCephFS bool
|
||||
deployRBD bool
|
||||
|
Reference in New Issue
Block a user