mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-22 23:10:36 -04:00
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:
parent
54fae71299
commit
dd8539f54b
14 changed files with 342 additions and 314 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue