mirror of https://github.com/hashicorp/consul
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
parent
6188db4d20
commit
eb31f0257f
|
@ -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 {
|
type containerOpts struct {
|
||||||
configFile string
|
configFile string
|
||||||
|
|
|
@ -251,7 +251,7 @@ func (g *Generator) Generate(step Step) error {
|
||||||
addVolume(c.TLSVolumeName)
|
addVolume(c.TLSVolumeName)
|
||||||
}
|
}
|
||||||
|
|
||||||
addImage("pause", "registry.k8s.io/pause:3.3")
|
addImage("pause", "hashiderek/pause")
|
||||||
|
|
||||||
if step.StartServers() {
|
if step.StartServers() {
|
||||||
for _, c := range g.topology.SortedClusters() {
|
for _, c := range g.topology.SortedClusters() {
|
||||||
|
|
Loading…
Reference in New Issue