forked from kubernetes-sigs/cluster-api-provider-vsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes-sigs#3161 from chrischdi/pr-vspheremach…
…intetpl-autoscaler ✨ supervisor: implement support for autoscale to/from zero
- Loading branch information
Showing
18 changed files
with
596 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
controllers/vmware/vspheremachinetemplate_controller.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
/* | ||
Copyright 2024 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package vmware | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/pkg/errors" | ||
vmoprv1 "github.com/vmware-tanzu/vm-operator/api/v1alpha2" | ||
corev1 "k8s.io/api/core/v1" | ||
apierrors "k8s.io/apimachinery/pkg/api/errors" | ||
"k8s.io/apimachinery/pkg/api/resource" | ||
"sigs.k8s.io/cluster-api/util/patch" | ||
"sigs.k8s.io/cluster-api/util/predicates" | ||
ctrl "sigs.k8s.io/controller-runtime" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
"sigs.k8s.io/controller-runtime/pkg/controller" | ||
"sigs.k8s.io/controller-runtime/pkg/handler" | ||
"sigs.k8s.io/controller-runtime/pkg/manager" | ||
"sigs.k8s.io/controller-runtime/pkg/reconcile" | ||
|
||
vmwarev1 "sigs.k8s.io/cluster-api-provider-vsphere/apis/vmware/v1beta1" | ||
capvcontext "sigs.k8s.io/cluster-api-provider-vsphere/pkg/context" | ||
) | ||
|
||
// +kubebuilder:rbac:groups=vmware.infrastructure.cluster.x-k8s.io,resources=vspheremachinetemplates,verbs=get;list;watch;create;update;patch;delete | ||
// +kubebuilder:rbac:groups=vmware.infrastructure.cluster.x-k8s.io,resources=vspheremachinetemplates/status,verbs=get;update;patch | ||
// +kubebuilder:rbac:groups=vmoperator.vmware.com,resources=virtualmachineclasses,verbs=get;list;watch | ||
|
||
// AddVSphereMachineTemplateControllerToManager adds the machine template controller to the provided | ||
// manager. | ||
func AddVSphereMachineTemplateControllerToManager(ctx context.Context, controllerManagerContext *capvcontext.ControllerManagerContext, mgr manager.Manager, options controller.Options) error { | ||
r := &vSphereMachineTemplateReconciler{ | ||
Client: controllerManagerContext.Client, | ||
} | ||
|
||
return ctrl.NewControllerManagedBy(mgr). | ||
For(&vmwarev1.VSphereMachineTemplate{}). | ||
WithOptions(options). | ||
Watches( | ||
&vmoprv1.VirtualMachineClass{}, | ||
handler.EnqueueRequestsFromMapFunc(r.enqueueVirtualMachineClassToVSphereMachineTemplateRequests), | ||
). | ||
WithEventFilter(predicates.ResourceNotPausedAndHasFilterLabel(ctrl.LoggerFrom(ctx), controllerManagerContext.WatchFilterValue)). | ||
Complete(r) | ||
} | ||
|
||
type vSphereMachineTemplateReconciler struct { | ||
Client client.Client | ||
} | ||
|
||
func (r *vSphereMachineTemplateReconciler) Reconcile(ctx context.Context, req ctrl.Request) (_ ctrl.Result, reterr error) { | ||
// Fetch VSphereMachineTemplate object | ||
vSphereMachineTemplate := &vmwarev1.VSphereMachineTemplate{} | ||
if err := r.Client.Get(ctx, req.NamespacedName, vSphereMachineTemplate); err != nil { | ||
if apierrors.IsNotFound(err) { | ||
return reconcile.Result{}, nil | ||
} | ||
return reconcile.Result{}, err | ||
} | ||
|
||
// Fetch the VirtualMachineClass | ||
vmClass := &vmoprv1.VirtualMachineClass{} | ||
if err := r.Client.Get(ctx, client.ObjectKey{Namespace: req.Namespace, Name: vSphereMachineTemplate.Spec.Template.Spec.ClassName}, vmClass); err != nil { | ||
return reconcile.Result{}, errors.Wrapf(err, "failed to get VirtualMachineClass %q for VSphereMachineTemplate", vSphereMachineTemplate.Spec.Template.Spec.ClassName) | ||
} | ||
|
||
patchHelper, err := patch.NewHelper(vSphereMachineTemplate, r.Client) | ||
if err != nil { | ||
return reconcile.Result{}, err | ||
} | ||
|
||
if vSphereMachineTemplate.Status.Capacity == nil { | ||
vSphereMachineTemplate.Status.Capacity = corev1.ResourceList{} | ||
} | ||
if vmClass.Spec.Hardware.Cpus > 0 { | ||
vSphereMachineTemplate.Status.Capacity[vmwarev1.VSphereResourceCPU] = *resource.NewQuantity(vmClass.Spec.Hardware.Cpus, resource.DecimalSI) | ||
} | ||
if !vmClass.Spec.Hardware.Memory.IsZero() { | ||
vSphereMachineTemplate.Status.Capacity[vmwarev1.VSphereResourceMemory] = vmClass.Spec.Hardware.Memory | ||
} | ||
|
||
return reconcile.Result{}, patchHelper.Patch(ctx, vSphereMachineTemplate) | ||
} | ||
|
||
// enqueueVirtualMachineClassToVSphereMachineTemplateRequests returns a list of VSphereMachineTemplate reconcile requests | ||
// that use a specific VirtualMachineClass. | ||
func (r *vSphereMachineTemplateReconciler) enqueueVirtualMachineClassToVSphereMachineTemplateRequests(ctx context.Context, virtualMachineClass client.Object) []reconcile.Request { | ||
requests := []reconcile.Request{} | ||
|
||
vSphereMachineTemplates := &vmwarev1.VSphereMachineTemplateList{} | ||
if err := r.Client.List(ctx, vSphereMachineTemplates, client.InNamespace(virtualMachineClass.GetNamespace())); err != nil { | ||
return nil | ||
} | ||
|
||
for _, vSphereMachineTemplate := range vSphereMachineTemplates.Items { | ||
if vSphereMachineTemplate.Spec.Template.Spec.ClassName != virtualMachineClass.GetName() { | ||
continue | ||
} | ||
|
||
requests = append(requests, reconcile.Request{ | ||
NamespacedName: client.ObjectKey{Namespace: vSphereMachineTemplate.Namespace, Name: vSphereMachineTemplate.Name}, | ||
}) | ||
} | ||
|
||
return requests | ||
} |
Oops, something went wrong.