types

package
v3.0.2-rc.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 9, 2023 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ControllerTopologyService

type ControllerTopologyService interface {
	// GetSharedDatastoresInTopology gets the list of shared datastores which adhere to the topology
	// requirement given in the CreateVolume request.
	GetSharedDatastoresInTopology(ctx context.Context, topologyFetchDSParams interface{}) ([]*cnsvsphere.DatastoreInfo,
		error)
	// GetTopologyInfoFromNodes retrieves the topology information of the nodes after the datastore has been
	// selected for volume provisioning.
	GetTopologyInfoFromNodes(ctx context.Context, retrieveTopologyInfoParams interface{}) ([]map[string]string, error)
}

ControllerTopologyService is an interface which exposes functionality related to topology aware clusters in the controller mode.

type NodeInfo

type NodeInfo struct {
	// NodeName uniquely identifies the node in kubernetes.
	NodeName string
	// NodeID is a unique identifier of the NodeVM in vSphere.
	NodeID string
}

NodeInfo contains the information required for the TopologyService to identify a node and retrieve its topology information.

type NodeTopologyService

type NodeTopologyService interface {
	// GetNodeTopologyLabels fetches the topology labels of a NodeVM given the NodeInfo.
	GetNodeTopologyLabels(ctx context.Context, info *NodeInfo) (map[string]string, error)
}

NodeTopologyService is an interface which exposes functionality related to topology aware clusters in the nodes.

type VanillaRetrieveTopologyInfoParams

type VanillaRetrieveTopologyInfoParams struct {
	// NodeNames is the list of node names which have
	// access to the selected datastore.
	NodeNames []string
	// DatastoreURL is the selected datastore for which the topology
	// information needs to be retrieved.
	DatastoreURL string
	// TopologyRequirement represents the topology conditions
	// which need to be satisfied during volume provisioning.
	TopologyRequirement *csi.TopologyRequirement
}

VanillaRetrieveTopologyInfoParams represents the params required to be able to call GetTopologyInfoFromNodes in vanilla cluster.

type VanillaTopologyFetchDSParams

type VanillaTopologyFetchDSParams struct {
	// TopologyRequirement represents the topology conditions
	// which need to be satisfied during volume provisioning.
	TopologyRequirement *csi.TopologyRequirement
	// Vc is the vcenter instance using which storage policy
	// compatibility will be calculated.
	Vc *cnsvsphere.VirtualCenter
	// StoragePolicyName is the policy name specified in the storage class
	// to which the volume should be compatible.
	StoragePolicyName string
}

VanillaTopologyFetchDSParams represents the params required to call GetSharedDatastoresInTopology in vanilla cluster.

type WCPRetrieveTopologyInfoParams

type WCPRetrieveTopologyInfoParams struct {
	// DatastoreURL is the selected datastore for which the topology
	// information needs to be retrieved.
	DatastoreURL string
	// StorageTopologyType is a storageClass parameter.
	// It represents a zonal or a crossZonal volume provisioning.
	StorageTopologyType string
	// TopologyRequirement represents the topology conditions
	// which need to be satisfied during volume provisioning.
	TopologyRequirement *csi.TopologyRequirement
	// Vc is the vcenter instance using which the potential
	// datastores will be calculated.
	Vc *cnsvsphere.VirtualCenter
}

WCPRetrieveTopologyInfoParams represents the params required to call GetTopologyInfoFromNodes in workload cluster.

type WCPTopologyFetchDSParams

type WCPTopologyFetchDSParams struct {
	// TopologyRequirement represents the topology conditions
	// which need to be satisfied during volume provisioning.
	TopologyRequirement *csi.TopologyRequirement
	// Vc is the vcenter instance using which the potential
	// datastores will be calculated.
	Vc *cnsvsphere.VirtualCenter
}

WCPTopologyFetchDSParams represents the params required to call GetSharedDatastoresInTopology in workload cluster.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL