Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: change sg finalizer suffix to sgID #60

Merged
merged 3 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ kind: Kustomization
images:
- name: controller
newName: tfgco/kubernetes-crossplane-infrastructure-operator
newTag: v0.7.1-alpha
newTag: v0.8.3-alpha
46 changes: 23 additions & 23 deletions internal/controller/ec2.aws/securitygroup_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ const (
AnnotationKeyReconciliationPaused = "crossplane.io/paused"
)

func getFinalizerName(sgName string) string {
return securityGroupFinalizer + "/" + sgName
func getFinalizerName(sgID string) string {
return securityGroupFinalizer + "/" + sgID
}

// SecurityGroupReconciler reconciles a SecurityGroup object
Expand Down Expand Up @@ -572,8 +572,8 @@ func (r *SecurityGroupReconciliation) reconcileDelete(ctx context.Context, sg *s
r.log.Error(err, fmt.Sprintf("failed to detach sg %v from kmp %v at %v", r.sg.Name, key.Name, key.Namespace))
continue
}
if controllerutil.ContainsFinalizer(&kmp, getFinalizerName(r.sg.Name)) {
r.removeKMPFinalizer(ctx, kmp)
if controllerutil.ContainsFinalizer(&kmp, getFinalizerName(csg.Status.AtProvider.SecurityGroupID)) {
r.removeKMPFinalizer(ctx, csg, kmp)
}
case "KopsControlPlane":
kcp := kcontrolplanev1alpha1.KopsControlPlane{}
Expand Down Expand Up @@ -604,7 +604,7 @@ func (r *SecurityGroupReconciliation) reconcileDelete(ctx context.Context, sg *s
r.log.Error(err, fmt.Sprintf("failed to detach sg %v from kmps of %v", r.sg.Name, kcp.Name))
}

r.removeKCPFinalizer(ctx, kcp, kmps...)
r.removeKCPFinalizer(ctx, kcp, csg, kmps...)
default:
return resultError, fmt.Errorf("infrastructureRef not supported")
}
Expand Down Expand Up @@ -843,8 +843,8 @@ func (r *SecurityGroupReconciliation) ensureAttachReferences(ctx context.Context
}
return resultError, err
}
if !controllerutil.ContainsFinalizer(&kmp, getFinalizerName(r.sg.Name)) {
r.addKMPFinalizer(ctx, kmp)
if !controllerutil.ContainsFinalizer(&kmp, getFinalizerName(csg.Status.AtProvider.SecurityGroupID)) {
r.addKMPFinalizer(ctx, csg, kmp)
}
case "KopsControlPlane":
kcp := kcontrolplanev1alpha1.KopsControlPlane{}
Expand All @@ -867,8 +867,8 @@ func (r *SecurityGroupReconciliation) ensureAttachReferences(ctx context.Context
}
return resultError, err
}
if !controllerutil.ContainsFinalizer(&kcp, getFinalizerName(r.sg.Name)) {
r.addKCPFinalizer(ctx, kcp, kmps...)
if !controllerutil.ContainsFinalizer(&kcp, getFinalizerName(csg.Status.AtProvider.SecurityGroupID)) {
r.addKCPFinalizer(ctx, kcp, csg, kmps...)
}
default:
return resultError, fmt.Errorf("infrastructureRef not supported")
Expand Down Expand Up @@ -900,7 +900,7 @@ func (r *SecurityGroupReconciliation) ensureDetachRemovedReferences(ctx context.
if err != nil {
return resultError, err
}
r.removeKMPFinalizer(ctx, kmp)
r.removeKMPFinalizer(ctx, csg, kmp)
case "KopsControlPlane":
kcp := kcontrolplanev1alpha1.KopsControlPlane{}
key := client.ObjectKey{
Expand All @@ -920,7 +920,7 @@ func (r *SecurityGroupReconciliation) ensureDetachRemovedReferences(ctx context.
if err != nil {
return resultError, err
}
r.removeKCPFinalizer(ctx, kcp, kmps...)
r.removeKCPFinalizer(ctx, kcp, csg, kmps...)
default:
continue
}
Expand All @@ -929,41 +929,41 @@ func (r *SecurityGroupReconciliation) ensureDetachRemovedReferences(ctx context.
return resultDefault, nil
}

func (r *SecurityGroupReconciliation) removeKMPFinalizer(ctx context.Context, kmp kinfrastructurev1alpha1.KopsMachinePool) {
controllerutil.RemoveFinalizer(&kmp, getFinalizerName(r.sg.Name))
func (r *SecurityGroupReconciliation) removeKMPFinalizer(ctx context.Context, csg *crossec2v1beta1.SecurityGroup, kmp kinfrastructurev1alpha1.KopsMachinePool) {
controllerutil.RemoveFinalizer(&kmp, getFinalizerName(csg.Status.AtProvider.SecurityGroupID))
if err := r.Update(ctx, &kmp); err != nil {
r.Recorder.Eventf(r.sg, corev1.EventTypeWarning, "FailedToUpdate", "failed to remove finalizer in %s: %s", kmp.Name, err)
}
}

func (r *SecurityGroupReconciliation) removeKCPFinalizer(ctx context.Context, kcp kcontrolplanev1alpha1.KopsControlPlane, kmps ...kinfrastructurev1alpha1.KopsMachinePool) {
controllerutil.RemoveFinalizer(&kcp, getFinalizerName(r.sg.Name))
func (r *SecurityGroupReconciliation) removeKCPFinalizer(ctx context.Context, kcp kcontrolplanev1alpha1.KopsControlPlane, csg *crossec2v1beta1.SecurityGroup, kmps ...kinfrastructurev1alpha1.KopsMachinePool) {
controllerutil.RemoveFinalizer(&kcp, getFinalizerName(csg.Status.AtProvider.SecurityGroupID))
if err := r.Update(ctx, &kcp); err != nil {
r.Recorder.Eventf(r.sg, corev1.EventTypeWarning, "FailedToUpdate", "failed to remove finalizer in %s: %s", kcp.Name, err)
}
for _, kmp := range kmps {
if controllerutil.ContainsFinalizer(&kmp, getFinalizerName(r.sg.Name)) {
r.removeKMPFinalizer(ctx, kmp)
if controllerutil.ContainsFinalizer(&kmp, getFinalizerName(csg.Status.AtProvider.SecurityGroupID)) {
r.removeKMPFinalizer(ctx, csg, kmp)
}
}
}

func (r *SecurityGroupReconciliation) addKMPFinalizer(ctx context.Context, kmp kinfrastructurev1alpha1.KopsMachinePool) {
controllerutil.AddFinalizer(&kmp, getFinalizerName(r.sg.Name))
func (r *SecurityGroupReconciliation) addKMPFinalizer(ctx context.Context, csg *crossec2v1beta1.SecurityGroup, kmp kinfrastructurev1alpha1.KopsMachinePool) {
controllerutil.AddFinalizer(&kmp, getFinalizerName(csg.Status.AtProvider.SecurityGroupID))
if err := r.Update(ctx, &kmp); err != nil {
r.Recorder.Eventf(r.sg, corev1.EventTypeWarning, "FailedToUpdate", "failed to add finalizer in %s: %s", kmp.Name, err)
}
}

func (r *SecurityGroupReconciliation) addKCPFinalizer(ctx context.Context, kcp kcontrolplanev1alpha1.KopsControlPlane, kmps ...kinfrastructurev1alpha1.KopsMachinePool) {
controllerutil.AddFinalizer(&kcp, getFinalizerName(r.sg.Name))
func (r *SecurityGroupReconciliation) addKCPFinalizer(ctx context.Context, kcp kcontrolplanev1alpha1.KopsControlPlane, csg *crossec2v1beta1.SecurityGroup, kmps ...kinfrastructurev1alpha1.KopsMachinePool) {
controllerutil.AddFinalizer(&kcp, getFinalizerName(csg.Status.AtProvider.SecurityGroupID))
if err := r.Update(ctx, &kcp); err != nil {
r.Recorder.Eventf(r.sg, corev1.EventTypeWarning, "FailedToUpdate", "failed to add finalizer in %s: %s", kcp.Name, err)
}

for _, kmp := range kmps {
if !controllerutil.ContainsFinalizer(&kmp, getFinalizerName(r.sg.Name)) {
r.addKMPFinalizer(ctx, kmp)
if !controllerutil.ContainsFinalizer(&kmp, getFinalizerName(csg.Status.AtProvider.SecurityGroupID)) {
r.addKMPFinalizer(ctx, csg, kmp)
}
}
}
Loading
Loading