cleanup: move volumeID to the volumeoptions

volumeID can be moved to the volumeOptions
as most of the volume related helper functions
are available on the volumeoptions.go

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna 2021-09-06 17:54:47 +05:30 committed by mergify[bot]
parent da70ed50dc
commit be7749c90e
2 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,6 @@ import (
"github.com/golang/protobuf/ptypes/timestamp"
)
type volumeID string
func parseTime(ctx context.Context, createTime time.Time) (*timestamp.Timestamp, error) {
tm, err := ptypes.TimestampProto(createTime)
if err != nil {

View File

@ -30,6 +30,8 @@ import (
"github.com/ceph/ceph-csi/internal/util/log"
)
type volumeID string
type volumeOptions struct {
TopologyPools *[]util.TopologyConstrainedPool
TopologyRequirement *csi.TopologyRequirement