From e586a4490d7a00f4448f7b01575d7d07c702105e Mon Sep 17 00:00:00 2001 From: Derek Menteer <105233703+hashi-derek@users.noreply.github.com> Date: Fri, 26 Jan 2024 14:38:02 -0600 Subject: [PATCH] Fix CICD docker image rate limits. (#20304) The docker image used in CICD was referencing `registry.k8s.io/pause:3.3`, which appears to no longer function correctly. This commit swaps over to a Hashicorp mirrored image that shouldn't have rate limits or disappearing images. --- test/integration/consul-container/libs/cluster/container.go | 2 +- testing/deployer/sprawl/internal/tfgen/gen.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/consul-container/libs/cluster/container.go b/test/integration/consul-container/libs/cluster/container.go index 0ff9038c0e..6667c278a4 100644 --- a/test/integration/consul-container/libs/cluster/container.go +++ b/test/integration/consul-container/libs/cluster/container.go @@ -608,7 +608,7 @@ func startContainer(ctx context.Context, req testcontainers.ContainerRequest) (t }) } -const pauseImage = "registry.k8s.io/pause:3.3" +const pauseImage = "hashiderek/pause" type containerOpts struct { configFile string diff --git a/testing/deployer/sprawl/internal/tfgen/gen.go b/testing/deployer/sprawl/internal/tfgen/gen.go index d5f15158fe..1f94d1e24c 100644 --- a/testing/deployer/sprawl/internal/tfgen/gen.go +++ b/testing/deployer/sprawl/internal/tfgen/gen.go @@ -251,7 +251,7 @@ func (g *Generator) Generate(step Step) error { addVolume(c.TLSVolumeName) } - addImage("pause", "registry.k8s.io/pause:3.3") + addImage("pause", "hashiderek/pause") if step.StartServers() { for _, c := range g.topology.SortedClusters() {