pkg/controller/direct/vmwareengine/privatecloud_controller.go (206 lines of code) (raw):

// Copyright 2024 Google LLC // // 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. // +tool:controller // proto.service: google.cloud.vmwareengine.v1.VmwareEngine // proto.message: google.cloud.vmwareengine.v1.PrivateCloud // crd.type: VMwareEnginePrivateCloud // crd.version: v1alpha1 package vmwareengine import ( "context" "fmt" "reflect" gcp "cloud.google.com/go/vmwareengine/apiv1" pb "cloud.google.com/go/vmwareengine/apiv1/vmwareenginepb" "google.golang.org/protobuf/types/known/fieldmaskpb" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime" "k8s.io/klog/v2" "sigs.k8s.io/controller-runtime/pkg/client" refs "github.com/GoogleCloudPlatform/k8s-config-connector/apis/refs/v1beta1" krm "github.com/GoogleCloudPlatform/k8s-config-connector/apis/vmwareengine/v1alpha1" "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/config" "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/controller/direct" "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/controller/direct/directbase" "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/controller/direct/registry" ) func init() { registry.RegisterModel(krm.VMwareEnginePrivateCloudGVK, NewPrivateCloudModel) } func NewPrivateCloudModel(ctx context.Context, config *config.ControllerConfig) (directbase.Model, error) { return &privateCloudModel{config: *config}, nil } var _ directbase.Model = &privateCloudModel{} type privateCloudModel struct { config config.ControllerConfig } func (m *privateCloudModel) AdapterForObject(ctx context.Context, reader client.Reader, u *unstructured.Unstructured) (directbase.Adapter, error) { obj := &krm.VMwareEnginePrivateCloud{} if err := runtime.DefaultUnstructuredConverter.FromUnstructured(u.Object, &obj); err != nil { return nil, fmt.Errorf("error converting to %T: %w", obj, err) } id, err := krm.NewPrivateCloudIdentity(ctx, reader, obj) if err != nil { return nil, err } // Get VMwareEngine GCP client gcpClient, err := newGCPClient(ctx, &m.config) if err != nil { return nil, err } client, err := gcpClient.newClient(ctx) if err != nil { return nil, err } return &privateCloudAdapter{ gcpClient: client, id: id, desired: obj, reader: reader, }, nil } func (m *privateCloudModel) AdapterForURL(ctx context.Context, url string) (directbase.Adapter, error) { // TODO: Support URLs return nil, nil } type privateCloudAdapter struct { gcpClient *gcp.Client id *krm.PrivateCloudIdentity desired *krm.VMwareEnginePrivateCloud actual *pb.PrivateCloud reader client.Reader } var _ directbase.Adapter = &privateCloudAdapter{} func (a *privateCloudAdapter) Find(ctx context.Context) (bool, error) { log := klog.FromContext(ctx) log.V(2).Info("getting vmwareengine private cloud", "name", a.id) req := &pb.GetPrivateCloudRequest{Name: a.id.String()} actual, err := a.gcpClient.GetPrivateCloud(ctx, req) if err != nil { if direct.IsNotFound(err) { return false, nil } return false, fmt.Errorf("getting vmwareengine private cloud %q from gcp: %w", a.id.String(), err) } a.actual = actual return true, nil } func (a *privateCloudAdapter) Create(ctx context.Context, createOp *directbase.CreateOperation) error { log := klog.FromContext(ctx) log.V(2).Info("creating vmwareengine private cloud", "name", a.id) if err := a.normalizeReferenceFields(ctx); err != nil { return err } mapCtx := &direct.MapContext{} desired := a.desired.DeepCopy() resource := VMwareEnginePrivateCloudSpec_ToProto(mapCtx, &desired.Spec) if mapCtx.Err() != nil { return mapCtx.Err() } req := &pb.CreatePrivateCloudRequest{ Parent: a.id.Parent().String(), PrivateCloudId: a.id.ID(), PrivateCloud: resource, } op, err := a.gcpClient.CreatePrivateCloud(ctx, req) if err != nil { return fmt.Errorf("creating vmwareengine private cloud %s: %w", a.id.String(), err) } created, err := op.Wait(ctx) if err != nil { return fmt.Errorf("vmwareengine private cloud %s waiting creation: %w", a.id, err) } log.V(2).Info("successfully created vmwareengine private cloud in gcp", "name", a.id) status := &krm.VMwareEnginePrivateCloudStatus{} status.ObservedState = VMwareEnginePrivateCloudObservedState_FromProto(mapCtx, created) if mapCtx.Err() != nil { return mapCtx.Err() } status.ExternalRef = direct.LazyPtr(a.id.String()) return createOp.UpdateStatus(ctx, status, nil) } func (a *privateCloudAdapter) Update(ctx context.Context, updateOp *directbase.UpdateOperation) error { log := klog.FromContext(ctx) log.V(2).Info("updating vmwareengine private cloud", "name", a.id) if err := a.normalizeReferenceFields(ctx); err != nil { return err } mapCtx := &direct.MapContext{} desired := a.desired.DeepCopy() resource := VMwareEnginePrivateCloudSpec_ToProto(mapCtx, &desired.Spec) if mapCtx.Err() != nil { return mapCtx.Err() } paths := []string{} if desired.Spec.Description != nil && !reflect.DeepEqual(resource.Description, a.actual.Description) { paths = append(paths, "description") } // TODO: spec.managementCluster is not readable from GCP // TODO: spec.networkConfig is has generated fields from GCP var updated *pb.PrivateCloud if len(paths) == 0 { log.V(2).Info("no field needs update", "name", a.id) // even though there is no update, we still want to update KRM status updated = a.actual } else { resource.Name = a.id.String() // we need to set the name so that GCP API can identify the resource req := &pb.UpdatePrivateCloudRequest{ PrivateCloud: resource, UpdateMask: &fieldmaskpb.FieldMask{Paths: paths}, } op, err := a.gcpClient.UpdatePrivateCloud(ctx, req) if err != nil { return fmt.Errorf("updating vmwareengine private cloud %s: %w", a.id.String(), err) } updated, err = op.Wait(ctx) if err != nil { return fmt.Errorf("vmwareengine private cloud %s waiting for update: %w", a.id, err) } log.V(2).Info("successfully updated vmwareengine private cloud", "name", a.id) } status := &krm.VMwareEnginePrivateCloudStatus{} status.ObservedState = VMwareEnginePrivateCloudObservedState_FromProto(mapCtx, updated) if mapCtx.Err() != nil { return mapCtx.Err() } status.ExternalRef = direct.LazyPtr(a.id.String()) return updateOp.UpdateStatus(ctx, status, nil) } func (a *privateCloudAdapter) Export(ctx context.Context) (*unstructured.Unstructured, error) { if a.actual == nil { return nil, fmt.Errorf("Find() not called") } u := &unstructured.Unstructured{} obj := &krm.VMwareEnginePrivateCloud{} mapCtx := &direct.MapContext{} obj.Spec = direct.ValueOf(VMwareEnginePrivateCloudSpec_FromProto(mapCtx, a.actual)) if mapCtx.Err() != nil { return nil, mapCtx.Err() } obj.Spec.ProjectRef = &refs.ProjectRef{External: a.id.Parent().ProjectID} obj.Spec.Location = a.id.Parent().Location uObj, err := runtime.DefaultUnstructuredConverter.ToUnstructured(obj) if err != nil { return nil, err } u.SetName(a.actual.Name) u.SetGroupVersionKind(krm.VMwareEnginePrivateCloudGVK) u.Object = uObj return u, nil } // Delete implements the Adapter interface. func (a *privateCloudAdapter) Delete(ctx context.Context, deleteOp *directbase.DeleteOperation) (bool, error) { log := klog.FromContext(ctx) log.V(2).Info("deleting vmwareengine private cloud", "name", a.id) req := &pb.DeletePrivateCloudRequest{Name: a.id.String()} op, err := a.gcpClient.DeletePrivateCloud(ctx, req) if err != nil { if direct.IsNotFound(err) { log.V(2).Info("skipping delete for non-existent BackupVault, assuming it was already deleted", "name", a.id) return true, nil } return false, fmt.Errorf("deleting vmwareengine private cloud %s: %w", a.id.String(), err) } log.V(2).Info("successfully deleted vmwareengine private cloud", "name", a.id) _, err = op.Wait(ctx) if err != nil { return false, fmt.Errorf("waiting delete BackupVault %s: %w", a.id, err) } return true, nil } func (a *privateCloudAdapter) normalizeReferenceFields(ctx context.Context) error { obj := a.desired if obj.Spec.NetworkConfig != nil && obj.Spec.NetworkConfig.VMwareEngineNetworkRef != nil { if _, err := obj.Spec.NetworkConfig.VMwareEngineNetworkRef.NormalizedExternal(ctx, a.reader, obj.GetNamespace()); err != nil { return err } } return nil }