Fix CICD docker image rate limits.

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.
pull/20304/head
Derek Menteer 2024-01-22 08:21:34 -06:00
parent 6188db4d20
commit eb31f0257f
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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() {