Documentation
¶
Index ¶
- Constants
- func CreateDataDiskList(ctx context.Context, client *prismclientv3.Client, ...) ([]*prismclientv3.VMDisk, error)
- func CreateSystemDiskSpec(imageUUID string, systemDiskSize int64) (*prismclientv3.VMDisk, error)
- func DeleteCategories(ctx context.Context, client *prismclientv3.Client, ...) error
- func DeleteVM(ctx context.Context, client *prismclientv3.Client, vmName, vmUUID string) (string, error)
- func FindVM(ctx context.Context, client *prismclientv3.Client, ...) (*prismclientv3.VMIntentResponse, error)
- func FindVMByName(ctx context.Context, client *prismclientv3.Client, vmName string) (*prismclientv3.VMIntentResponse, error)
- func FindVMByUUID(ctx context.Context, client *prismclientv3.Client, uuid string) (*prismclientv3.VMIntentResponse, error)
- func GenerateProviderID(uuid string) string
- func GetCategoryVMSpec(ctx context.Context, client *prismclientv3.Client, ...) (map[string]string, error)
- func GetDefaultCAPICategoryIdentifiers(clusterName string) []*infrav1.NutanixCategoryIdentifier
- func GetFailureDomain(failureDomainName string, nutanixCluster *infrav1.NutanixCluster) (*infrav1.NutanixFailureDomain, error)
- func GetGPU(ctx context.Context, client *prismclientv3.Client, peUUID string, ...) (*prismclientv3.VMGpu, error)
- func GetGPUList(ctx context.Context, client *prismclientv3.Client, gpus []infrav1.NutanixGPU, ...) ([]*prismclientv3.VMGpu, error)
- func GetGPUsForPE(ctx context.Context, client *prismclientv3.Client, peUUID string) ([]*prismclientv3.GPU, error)
- func GetImage(ctx context.Context, client *prismclientv3.Client, ...) (*prismclientv3.ImageIntentResponse, error)
- func GetImageByLookup(ctx context.Context, client *prismclientv3.Client, ...) (*prismclientv3.ImageIntentResponse, error)
- func GetMibValueOfQuantity(quantity resource.Quantity) int64
- func GetObsoleteDefaultCAPICategoryIdentifiers(clusterName string) []*infrav1.NutanixCategoryIdentifier
- func GetOrCreateCategories(ctx context.Context, client *prismclientv3.Client, ...) ([]*prismclientv3.CategoryValueStatus, error)
- func GetPEUUID(ctx context.Context, client *prismclientv3.Client, peName, peUUID *string) (string, error)
- func GetProjectUUID(ctx context.Context, client *prismclientv3.Client, ...) (string, error)
- func GetSubnetUUID(ctx context.Context, client *prismclientv3.Client, peUUID string, ...) (string, error)
- func GetSubnetUUIDList(ctx context.Context, client *prismclientv3.Client, ...) ([]string, error)
- func GetTaskUUIDFromVM(vm *prismclientv3.VMIntentResponse) (string, error)
- func GetVMUUID(nutanixMachine *infrav1.NutanixMachine) (string, error)
- func HasTaskInProgress(ctx context.Context, client *prismclientv3.Client, taskUUID string) (bool, error)
- func ImageMarkedForDeletion(image *prismclientv3.ImageIntentResponse) bool
- type ControllerConfig
- type ControllerConfigOpts
- type ImageLookup
- type NutanixClusterReconciler
- type NutanixMachineReconciler
- func (r *NutanixMachineReconciler) GetSubnetAndPEUUIDs(rctx *nctx.MachineContext) (string, []string, error)
- func (r *NutanixMachineReconciler) Reconcile(ctx context.Context, req ctrl.Request) (res ctrl.Result, reterr error)
- func (r *NutanixMachineReconciler) SetupWithManager(ctx context.Context, mgr ctrl.Manager) error
- type StorageContainerIntentResponse
- func GetStorageContainerByNtnxResourceIdentifier(ctx context.Context, client *prismclientv3.Client, ...) (*StorageContainerIntentResponse, error)
- func GetStorageContainerInCluster(ctx context.Context, client *prismclientv3.Client, ...) (*StorageContainerIntentResponse, error)
- func ListStorageContainers(ctx context.Context, client *prismclientv3.Client) ([]*StorageContainerIntentResponse, error)
Constants ¶
const ( ImageStateDeletePending = "DELETE_PENDING" ImageStateDeleteInProgress = "DELETE_IN_PROGRESS" )
Variables ¶
This section is empty.
Functions ¶
func CreateDataDiskList ¶ added in v1.6.0
func CreateDataDiskList(ctx context.Context, client *prismclientv3.Client, dataDiskSpecs []infrav1.NutanixMachineVMDisk, peUUID string) ([]*prismclientv3.VMDisk, error)
CreateDataDiskList creates a list of data disks with the given data disk specs
func CreateSystemDiskSpec ¶ added in v1.1.1
func CreateSystemDiskSpec(imageUUID string, systemDiskSize int64) (*prismclientv3.VMDisk, error)
func DeleteCategories ¶ added in v1.1.1
func DeleteCategories(ctx context.Context, client *prismclientv3.Client, categoryIdentifiers, obsoleteCategoryIdentifiers []*infrav1.NutanixCategoryIdentifier) error
DeleteCategories deletes the given list of categories
func DeleteVM ¶ added in v1.1.1
func DeleteVM(ctx context.Context, client *prismclientv3.Client, vmName, vmUUID string) (string, error)
DeleteVM deletes a VM and is invoked by the NutanixMachineReconciler
func FindVM ¶ added in v1.1.1
func FindVM(ctx context.Context, client *prismclientv3.Client, nutanixMachine *infrav1.NutanixMachine, vmName string) (*prismclientv3.VMIntentResponse, error)
FindVM retrieves the VM with the given uuid or name
func FindVMByName ¶ added in v1.1.1
func FindVMByName(ctx context.Context, client *prismclientv3.Client, vmName string) (*prismclientv3.VMIntentResponse, error)
FindVMByName retrieves the VM with the given vm name
func FindVMByUUID ¶ added in v1.1.1
func FindVMByUUID(ctx context.Context, client *prismclientv3.Client, uuid string) (*prismclientv3.VMIntentResponse, error)
FindVMByUUID retrieves the VM with the given vm UUID. Returns nil if not found
func GenerateProviderID ¶ added in v1.1.1
GenerateProviderID generates a provider ID for the given resource UUID
func GetCategoryVMSpec ¶ added in v1.1.1
func GetCategoryVMSpec(ctx context.Context, client *prismclientv3.Client, categoryIdentifiers []*infrav1.NutanixCategoryIdentifier) (map[string]string, error)
GetCategoryVMSpec returns a flatmap of categories and their values
func GetDefaultCAPICategoryIdentifiers ¶ added in v1.1.1
func GetDefaultCAPICategoryIdentifiers(clusterName string) []*infrav1.NutanixCategoryIdentifier
GetDefaultCAPICategoryIdentifiers returns the default CAPI category identifiers
func GetFailureDomain ¶ added in v1.3.0
func GetFailureDomain(failureDomainName string, nutanixCluster *infrav1.NutanixCluster) (*infrav1.NutanixFailureDomain, error)
GetFailureDomain gets the failure domain with a given name from a NutanixCluster object.
func GetGPU ¶ added in v1.2.0
func GetGPU(ctx context.Context, client *prismclientv3.Client, peUUID string, gpu infrav1.NutanixGPU) (*prismclientv3.VMGpu, error)
GetGPUDeviceID returns the device ID of a GPU with the given name
func GetGPUList ¶ added in v1.2.0
func GetGPUList(ctx context.Context, client *prismclientv3.Client, gpus []infrav1.NutanixGPU, peUUID string) ([]*prismclientv3.VMGpu, error)
GetGPUList returns a list of GPU device IDs for the given list of GPUs
func GetGPUsForPE ¶ added in v1.2.0
func GetGPUsForPE(ctx context.Context, client *prismclientv3.Client, peUUID string) ([]*prismclientv3.GPU, error)
func GetImage ¶ added in v1.6.0
func GetImage(ctx context.Context, client *prismclientv3.Client, id infrav1.NutanixResourceIdentifier) (*prismclientv3.ImageIntentResponse, error)
GetImage returns an image. If no UUID is provided, returns the unique image with the name. Returns an error if no image has the UUID, if no image has the name, or more than one image has the name.
func GetImageByLookup ¶ added in v1.6.0
func GetImageByLookup( ctx context.Context, client *prismclientv3.Client, imageTemplate, imageLookupBaseOS, k8sVersion *string, ) (*prismclientv3.ImageIntentResponse, error)
func GetMibValueOfQuantity ¶ added in v1.1.1
GetMibValueOfQuantity returns the given quantity value in Mib
func GetObsoleteDefaultCAPICategoryIdentifiers ¶ added in v1.2.0
func GetObsoleteDefaultCAPICategoryIdentifiers(clusterName string) []*infrav1.NutanixCategoryIdentifier
GetObsoleteDefaultCAPICategoryIdentifiers returns the default CAPI category identifiers
func GetOrCreateCategories ¶ added in v1.1.1
func GetOrCreateCategories(ctx context.Context, client *prismclientv3.Client, categoryIdentifiers []*infrav1.NutanixCategoryIdentifier) ([]*prismclientv3.CategoryValueStatus, error)
GetOrCreateCategories returns the list of category UUIDs for the given list of category names
func GetPEUUID ¶ added in v1.1.1
func GetPEUUID(ctx context.Context, client *prismclientv3.Client, peName, peUUID *string) (string, error)
GetPEUUID returns the UUID of the Prism Element cluster with the given name
func GetProjectUUID ¶ added in v1.1.1
func GetProjectUUID(ctx context.Context, client *prismclientv3.Client, projectName, projectUUID *string) (string, error)
GetProjectUUID returns the UUID of the project with the given name
func GetSubnetUUID ¶ added in v1.1.1
func GetSubnetUUID(ctx context.Context, client *prismclientv3.Client, peUUID string, subnetName, subnetUUID *string) (string, error)
GetSubnetUUID returns the UUID of the subnet with the given name
func GetSubnetUUIDList ¶ added in v1.1.1
func GetSubnetUUIDList(ctx context.Context, client *prismclientv3.Client, machineSubnets []infrav1.NutanixResourceIdentifier, peUUID string) ([]string, error)
GetSubnetUUIDList returns a list of subnet UUIDs for the given list of subnet names
func GetTaskUUIDFromVM ¶ added in v1.1.1
func GetTaskUUIDFromVM(vm *prismclientv3.VMIntentResponse) (string, error)
GetTaskUUIDFromVM returns the UUID of the task that created the VM with the given UUID
func GetVMUUID ¶ added in v1.1.1
func GetVMUUID(nutanixMachine *infrav1.NutanixMachine) (string, error)
GetVMUUID returns the UUID of the VM with the given name
func HasTaskInProgress ¶ added in v1.1.1
func HasTaskInProgress(ctx context.Context, client *prismclientv3.Client, taskUUID string) (bool, error)
HasTaskInProgress returns true if the given task is in progress
func ImageMarkedForDeletion ¶ added in v1.6.0
func ImageMarkedForDeletion(image *prismclientv3.ImageIntentResponse) bool
Types ¶
type ControllerConfig ¶ added in v1.1.3
type ControllerConfig struct { MaxConcurrentReconciles int RateLimiter workqueue.RateLimiter }
ControllerConfig is the configuration for cluster and machine controllers
type ControllerConfigOpts ¶ added in v1.1.3
type ControllerConfigOpts func(*ControllerConfig) error
ControllerConfigOpts is a function that can be used to configure the controller config
func WithMaxConcurrentReconciles ¶ added in v1.1.3
func WithMaxConcurrentReconciles(max int) ControllerConfigOpts
WithMaxConcurrentReconciles sets the maximum number of concurrent reconciles
func WithRateLimiter ¶ added in v1.2.5
func WithRateLimiter(rateLimiter workqueue.RateLimiter) ControllerConfigOpts
WithRateLimiter sets the rate limiter for the controller
type ImageLookup ¶ added in v1.6.0
type NutanixClusterReconciler ¶
type NutanixClusterReconciler struct { Client client.Client SecretInformer coreinformers.SecretInformer ConfigMapInformer coreinformers.ConfigMapInformer Scheme *runtime.Scheme // contains filtered or unexported fields }
NutanixClusterReconciler reconciles a NutanixCluster object
func NewNutanixClusterReconciler ¶ added in v1.1.1
func NewNutanixClusterReconciler(client client.Client, secretInformer coreinformers.SecretInformer, configMapInformer coreinformers.ConfigMapInformer, scheme *runtime.Scheme, copts ...ControllerConfigOpts) (*NutanixClusterReconciler, error)
func (*NutanixClusterReconciler) Reconcile ¶
func (r *NutanixClusterReconciler) Reconcile(ctx context.Context, req ctrl.Request) (res ctrl.Result, reterr error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state. TODO(user): Modify the Reconcile function to compare the state specified by the NutanixCluster object against the actual cluster state, and then perform operations to make the cluster state reflect the state specified by the user.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.8.3/pkg/reconcile
func (*NutanixClusterReconciler) SetupWithManager ¶
SetupWithManager sets up the NutanixCluster controller with the Manager.
type NutanixMachineReconciler ¶
type NutanixMachineReconciler struct { client.Client SecretInformer coreinformers.SecretInformer ConfigMapInformer coreinformers.ConfigMapInformer Scheme *runtime.Scheme // contains filtered or unexported fields }
NutanixMachineReconciler reconciles a NutanixMachine object
func NewNutanixMachineReconciler ¶ added in v1.1.1
func NewNutanixMachineReconciler(client client.Client, secretInformer coreinformers.SecretInformer, configMapInformer coreinformers.ConfigMapInformer, scheme *runtime.Scheme, copts ...ControllerConfigOpts) (*NutanixMachineReconciler, error)
func (*NutanixMachineReconciler) GetSubnetAndPEUUIDs ¶ added in v1.3.0
func (r *NutanixMachineReconciler) GetSubnetAndPEUUIDs(rctx *nctx.MachineContext) (string, []string, error)
func (*NutanixMachineReconciler) Reconcile ¶
func (r *NutanixMachineReconciler) Reconcile(ctx context.Context, req ctrl.Request) (res ctrl.Result, reterr error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state. TODO(user): Modify the Reconcile function to compare the state specified by the NutanixMachine object against the actual cluster state, and then perform operations to make the cluster state reflect the state specified by the user.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.8.3/pkg/reconcile
func (*NutanixMachineReconciler) SetupWithManager ¶
SetupWithManager sets up the controller with the Manager.
type StorageContainerIntentResponse ¶ added in v1.6.0
type StorageContainerIntentResponse struct { Name *string UUID *string ClusterName *string ClusterUUID *string }
func GetStorageContainerByNtnxResourceIdentifier ¶ added in v1.6.0
func GetStorageContainerByNtnxResourceIdentifier(ctx context.Context, client *prismclientv3.Client, storageContainerIdentifier infrav1.NutanixResourceIdentifier) (*StorageContainerIntentResponse, error)
func GetStorageContainerInCluster ¶ added in v1.6.0
func GetStorageContainerInCluster(ctx context.Context, client *prismclientv3.Client, storageContainerIdentifier, clusterIdentifier infrav1.NutanixResourceIdentifier) (*StorageContainerIntentResponse, error)
func ListStorageContainers ¶ added in v1.6.0
func ListStorageContainers(ctx context.Context, client *prismclientv3.Client) ([]*StorageContainerIntentResponse, error)