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

Update gardener infrastructure egress cidrs for ACL extension. #61

Merged
merged 12 commits into from
Sep 10, 2024
163 changes: 163 additions & 0 deletions controllers/deployment/infrastructure_status.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
package deployment

import (
"encoding/json"
"fmt"
"net/netip"
"slices"
"strings"

v2 "github.com/metal-stack/firewall-controller-manager/api/v2"
"github.com/metal-stack/firewall-controller-manager/controllers"
"github.com/metal-stack/metal-lib/pkg/pointer"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
)

func (c *controller) updateInfrastructureStatus(r *controllers.Ctx[*v2.FirewallDeployment], infrastructureName string, ownedFirewalls []*v2.Firewall) error {
infraObj := &unstructured.Unstructured{}

infraObj.SetGroupVersionKind(schema.GroupVersionKind{
Group: "extensions.gardener.cloud",
Kind: "Infrastructure",
Version: "v1alpha1",
})

err := c.c.GetSeedClient().Get(r.Ctx, client.ObjectKey{
Namespace: c.c.GetSeedNamespace(),
Name: infrastructureName,
}, infraObj)
if err != nil {
if apierrors.IsNotFound(err) {
return nil
}
return err
}

type infrastructure struct {
majst01 marked this conversation as resolved.
Show resolved Hide resolved
Spec struct {
ProviderConfig struct {
Firewall struct {
EgressRules []struct {
IPs []string `json:"ips"`
} `json:"egressRules"`
} `json:"firewall"`
} `json:"providerConfig"`
} `json:"spec"`
Status struct {
EgressCIDRs []string `json:"egressCIDRs"`
} `json:"status"`
}

infraRaw, err := json.Marshal(infraObj)
if err != nil {
return fmt.Errorf("unable to convert gardener infrastructure object: %w", err)
}

var typedInfra infrastructure
err = json.Unmarshal(infraRaw, &typedInfra)
if err != nil {
return fmt.Errorf("unable to convert gardener infrastructure object: %w", err)
}

var egressCIDRs []string

for _, fw := range ownedFirewalls {
for _, network := range fw.Status.FirewallNetworks {
if pointer.SafeDeref(network.NetworkType) != "external" {
continue
}

for _, ip := range network.IPs {
parsed, err := netip.ParseAddr(ip)
if err != nil {
continue
}

egressCIDRs = append(egressCIDRs, fmt.Sprintf("%s/%d", ip, parsed.BitLen()))
}
}
}

for _, rule := range typedInfra.Spec.ProviderConfig.Firewall.EgressRules {
for _, ip := range rule.IPs {
parsed, err := netip.ParseAddr(ip)
if err != nil {
continue
}

egressCIDRs = append(egressCIDRs, fmt.Sprintf("%s/%d", ip, parsed.BitLen()))
}
}

slices.Sort(egressCIDRs)
slices.Sort(typedInfra.Status.EgressCIDRs)

// check if an update is required or not
if slices.Equal(egressCIDRs, typedInfra.Status.EgressCIDRs) {
c.log.Info("found gardener infrastructure resource, egress cidrs already up-to-date", "infrastructure-name", infraObj.GetName(), "egress-cidrs", egressCIDRs)
return nil
}

infraStatusPatch := map[string]any{
"status": map[string]any{
"egressCIDRs": egressCIDRs,
},
}

jsonPatch, err := json.Marshal(infraStatusPatch)
if err != nil {
return fmt.Errorf("unable to marshal infrastructure status patch: %w", err)
}

err = c.c.GetSeedClient().Status().Patch(r.Ctx, infraObj, client.RawPatch(types.MergePatchType, jsonPatch))
if err != nil {
return fmt.Errorf("error patching infrastructure status egress cidrs field: %w", err)
}

c.log.Info("found gardener infrastructure resource and patched egress cidrs for acl extension", "infrastructure-name", infraObj.GetName(), "egress-cidrs", egressCIDRs)

aclObj := &unstructured.Unstructured{}

aclObj.SetGroupVersionKind(schema.GroupVersionKind{
Group: "extensions.gardener.cloud",
Kind: "Extension",
Version: "v1alpha1",
})

err = c.c.GetSeedClient().Get(r.Ctx, client.ObjectKey{
Namespace: c.c.GetSeedNamespace(),
Name: "acl",
}, aclObj)
if err != nil {
if apierrors.IsNotFound(err) {
return nil
}
return err
}

err = v2.AddAnnotation(r.Ctx, c.c.GetSeedClient(), aclObj, "gardener.cloud/operation", "reconcile")
if err != nil {
return fmt.Errorf("error annotating acl extension with reconcile operation: %w", err)
}

c.log.Info("added reconcile annotation to gardener acl extension object")

return nil
}

func extractInfrastructureNameFromSeedNamespace(namespace string) (string, bool) {
if !strings.HasPrefix(namespace, "shoot--") {
return "", false
}

parts := strings.Split(namespace, "--")
if len(parts) < 3 {
return "", false
}

return strings.Join(parts[2:], "--"), true
majst01 marked this conversation as resolved.
Show resolved Hide resolved
}
Loading