Documentation ¶
Index ¶
- func AzureClusterToAzureMachinesMapper(c client.Client, scheme *runtime.Scheme, log logr.Logger) (handler.Mapper, error)
- func GetCloudProviderSecret(d azure.ClusterScoper, namespace, name string, owner metav1.OwnerReference, ...) (*corev1.Secret, error)
- func GetClusterIdentityFromRef(ctx context.Context, c client.Client, azureClusterNamespace string, ...) (*infrav1.AzureClusterIdentity, error)
- func GetMachinePoolByName(ctx context.Context, c client.Client, namespace, name string) (*capiv1exp.MachinePool, error)
- func GetObjectsToRequestsByNamespaceAndClusterName(ctx context.Context, c client.Client, clusterKey client.ObjectKey, ...) []ctrl.Request
- func GetOwnerClusterName(obj metav1.ObjectMeta) (string, bool)
- func GetOwnerMachinePool(ctx context.Context, c client.Client, obj metav1.ObjectMeta) (*capiv1exp.MachinePool, error)
- func ShouldDeleteIndividualResources(ctx context.Context, clusterScope *scope.ClusterScope) bool
- type AzureClusterReconciler
- type AzureIdentityReconciler
- type AzureJSONMachinePoolReconciler
- type AzureJSONMachineReconciler
- type AzureJSONTemplateReconciler
- type AzureMachineReconciler
- type CloudProviderConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AzureClusterToAzureMachinesMapper ¶ added in v0.4.6
func AzureClusterToAzureMachinesMapper(c client.Client, scheme *runtime.Scheme, log logr.Logger) (handler.Mapper, error)
AzureClusterToAzureMachinesMapper creates a mapping handler to transform AzureClusters into AzureMachines. The transform requires AzureCluster to map to the owning Cluster, then from the Cluster, collect the Machines belonging to the cluster, then finally projecting the infrastructure reference to the AzureMachine.
func GetCloudProviderSecret ¶ added in v0.4.7
func GetCloudProviderSecret(d azure.ClusterScoper, namespace, name string, owner metav1.OwnerReference, identityType infrav1.VMIdentity, userIdentityID string) (*corev1.Secret, error)
GetCloudProviderSecret returns the required azure json secret for the provided parameters.
func GetClusterIdentityFromRef ¶ added in v0.4.11
func GetClusterIdentityFromRef(ctx context.Context, c client.Client, azureClusterNamespace string, ref *corev1.ObjectReference) (*infrav1.AzureClusterIdentity, error)
GetClusterIdentityFromRef returns the AzureClusterIdentity referenced by the AzureCluster.
func GetMachinePoolByName ¶ added in v0.4.7
func GetMachinePoolByName(ctx context.Context, c client.Client, namespace, name string) (*capiv1exp.MachinePool, error)
GetMachinePoolByName finds and return a Machine object using the specified params.
func GetObjectsToRequestsByNamespaceAndClusterName ¶ added in v0.4.6
func GetObjectsToRequestsByNamespaceAndClusterName(ctx context.Context, c client.Client, clusterKey client.ObjectKey, list *unstructured.UnstructuredList) []ctrl.Request
GetObjectsToRequestsByNamespaceAndClusterName returns the slice of ctrl.Requests consisting the list items contained in the unstructured list.
func GetOwnerClusterName ¶ added in v0.4.6
func GetOwnerClusterName(obj metav1.ObjectMeta) (string, bool)
GetOwnerClusterName returns the name of the owning Cluster by finding a clusterv1.Cluster in the ownership references.
func GetOwnerMachinePool ¶ added in v0.4.7
func GetOwnerMachinePool(ctx context.Context, c client.Client, obj metav1.ObjectMeta) (*capiv1exp.MachinePool, error)
GetOwnerMachinePool returns the MachinePool object owning the current resource.
func ShouldDeleteIndividualResources ¶ added in v0.4.9
func ShouldDeleteIndividualResources(ctx context.Context, clusterScope *scope.ClusterScope) bool
ShouldDeleteIndividualResources returns false if the resource group is managed and the whole cluster is being deleted meaning that we can rely on a single resource group delete operation as opposed to deleting every individual VM resource.
Types ¶
type AzureClusterReconciler ¶
type AzureClusterReconciler struct { client.Client Log logr.Logger Recorder record.EventRecorder ReconcileTimeout time.Duration // contains filtered or unexported fields }
AzureClusterReconciler reconciles a AzureCluster object
func NewAzureClusterReconciler ¶ added in v0.4.11
func NewAzureClusterReconciler(client client.Client, log logr.Logger, recorder record.EventRecorder, reconcileTimeout time.Duration) *AzureClusterReconciler
NewAzureClusterReconciler returns a new AzureClusterReconciler instance
func (*AzureClusterReconciler) Reconcile ¶
Reconcile idempotently gets, creates, and updates a cluster.
func (*AzureClusterReconciler) SetupWithManager ¶
func (r *AzureClusterReconciler) SetupWithManager(mgr ctrl.Manager, options controller.Options) error
SetupWithManager initializes this controller with a manager.
type AzureIdentityReconciler ¶ added in v0.4.11
type AzureIdentityReconciler struct { client.Client Log logr.Logger Recorder record.EventRecorder ReconcileTimeout time.Duration }
AzureIdentityReconciler reconciles azure identity objects
func (*AzureIdentityReconciler) Reconcile ¶ added in v0.4.11
Reconcile reconciles the Azure identity.
func (*AzureIdentityReconciler) SetupWithManager ¶ added in v0.4.11
func (r *AzureIdentityReconciler) SetupWithManager(mgr ctrl.Manager, options controller.Options) error
SetupWithManager initializes this controller with a manager
type AzureJSONMachinePoolReconciler ¶ added in v0.4.7
type AzureJSONMachinePoolReconciler struct { client.Client Log logr.Logger Recorder record.EventRecorder ReconcileTimeout time.Duration }
AzureJSONMachinePoolReconciler reconciles azure json secrets for AzureMachinePool objects
func (*AzureJSONMachinePoolReconciler) Reconcile ¶ added in v0.4.7
Reconcile reconciles the azure json for AzureMachinePool objects
func (*AzureJSONMachinePoolReconciler) SetupWithManager ¶ added in v0.4.7
func (r *AzureJSONMachinePoolReconciler) SetupWithManager(mgr ctrl.Manager, options controller.Options) error
SetupWithManager initializes this controller with a manager
type AzureJSONMachineReconciler ¶ added in v0.4.7
type AzureJSONMachineReconciler struct { client.Client Log logr.Logger Recorder record.EventRecorder ReconcileTimeout time.Duration }
AzureJSONMachineReconciler reconciles azure json secrets for AzureMachine objects
func (*AzureJSONMachineReconciler) Reconcile ¶ added in v0.4.7
Reconcile reconciles the azure json for a specific machine not in a machine deployment
func (*AzureJSONMachineReconciler) SetupWithManager ¶ added in v0.4.7
func (r *AzureJSONMachineReconciler) SetupWithManager(mgr ctrl.Manager, options controller.Options) error
SetupWithManager initializes this controller with a manager
type AzureJSONTemplateReconciler ¶ added in v0.4.7
type AzureJSONTemplateReconciler struct { client.Client Log logr.Logger Recorder record.EventRecorder ReconcileTimeout time.Duration }
AzureJSONTemplateReconciler reconciles azure json secrets for AzureMachineTemplate objects
func (*AzureJSONTemplateReconciler) Reconcile ¶ added in v0.4.7
Reconcile reconciles azure json secrets for azure machine templates
func (*AzureJSONTemplateReconciler) SetupWithManager ¶ added in v0.4.7
func (r *AzureJSONTemplateReconciler) SetupWithManager(mgr ctrl.Manager, options controller.Options) error
SetupWithManager initializes this controller with a manager.
type AzureMachineReconciler ¶
type AzureMachineReconciler struct { client.Client Log logr.Logger Recorder record.EventRecorder ReconcileTimeout time.Duration // contains filtered or unexported fields }
AzureMachineReconciler reconciles a AzureMachine object
func NewAzureMachineReconciler ¶ added in v0.4.11
func NewAzureMachineReconciler(client client.Client, log logr.Logger, recorder record.EventRecorder, reconcileTimeout time.Duration) *AzureMachineReconciler
NewAzureMachineReconciler returns a new AzureMachineReconciler instance
func (*AzureMachineReconciler) Reconcile ¶
Reconcile idempotently gets, creates, and updates a machine.
func (*AzureMachineReconciler) SetupWithManager ¶
func (r *AzureMachineReconciler) SetupWithManager(mgr ctrl.Manager, options controller.Options) error
SetupWithManager initializes this controller with a manager.
type CloudProviderConfig ¶ added in v0.4.7
type CloudProviderConfig struct { Cloud string `json:"cloud"` TenantID string `json:"tenantId"` SubscriptionID string `json:"subscriptionId"` AadClientID string `json:"aadClientId,omitempty"` AadClientSecret string `json:"aadClientSecret,omitempty"` ResourceGroup string `json:"resourceGroup"` SecurityGroupName string `json:"securityGroupName"` SecurityGroupResourceGroup string `json:"securityGroupResourceGroup"` Location string `json:"location"` VMType string `json:"vmType"` VnetName string `json:"vnetName"` VnetResourceGroup string `json:"vnetResourceGroup"` SubnetName string `json:"subnetName"` RouteTableName string `json:"routeTableName"` LoadBalancerSku string `json:"loadBalancerSku"` MaximumLoadBalancerRuleCount int `json:"maximumLoadBalancerRuleCount"` UseManagedIdentityExtension bool `json:"useManagedIdentityExtension"` UseInstanceMetadata bool `json:"useInstanceMetadata"` UserAssignedIdentityID string `json:"userAssignedIdentityId,omitempty"` }
CloudProviderConfig is an abbreviated version of the same struct in k/k