deps: update Go dependencies (#3802)

* deps: update Go dependencies

* bazel: update rules_go to 0.54.0

* deps: rollback go-tpm-tools

* renovate: block updates for go-tpm-tools

* renovate: group rules_go updates

* cloud/azure: update iptables call

* deps: tidy all modules

* renovate: remove concurrent PR limit

* attestation: replace expired AWS cert

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
Co-authored-by: edgelessci <edgelessci@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2025-05-06 16:43:53 +02:00 committed by GitHub
parent 54fae71299
commit dd8539f54b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 342 additions and 314 deletions

View file

@ -15,7 +15,6 @@ import (
"github.com/edgelesssys/constellation/v2/internal/role"
"k8s.io/kubernetes/pkg/util/iptables"
"k8s.io/utils/exec"
)
// PrepareControlPlaneNode sets up iptables for the control plane node only
@ -54,7 +53,7 @@ func (c *Cloud) PrepareControlPlaneNode(ctx context.Context, log *slog.Logger) e
}
log.Info(fmt.Sprintf("Setting up iptables for control plane node with load balancer IP %s", loadbalancerIP))
iptablesExec := iptables.New(exec.New(), iptables.ProtocolIPv4)
iptablesExec := iptables.New(iptables.ProtocolIPv4)
const chainName = "azure-lb-nat"
if _, err := iptablesExec.EnsureChain(iptables.TableNAT, chainName); err != nil {