mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 19:17:58 +00:00
use internal docker mirror for CI (#20435)
* use internal docker mirror for CI * maybe it needs to be https * no just kidding it's docker:// * apparently overriding it globally causes creates to fail. time to override each image individually lol * maybe this works
This commit is contained in:
@@ -47,7 +47,7 @@ func prepareTestContainer(t *testing.T, bootstrap bool) (func(), *Config) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
runner, err := docker.NewServiceRunner(docker.RunOptions{
|
runner, err := docker.NewServiceRunner(docker.RunOptions{
|
||||||
ImageRepo: "multani/nomad",
|
ImageRepo: "docker.mirror.hashicorp.services/multani/nomad",
|
||||||
ImageTag: "1.1.6",
|
ImageTag: "1.1.6",
|
||||||
ContainerName: "nomad",
|
ContainerName: "nomad",
|
||||||
Ports: []string{"4646/tcp"},
|
Ports: []string{"4646/tcp"},
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
dbplugin "github.com/hashicorp/vault/sdk/database/dbplugin/v5"
|
"github.com/hashicorp/vault/sdk/database/dbplugin/v5"
|
||||||
dbtesting "github.com/hashicorp/vault/sdk/database/dbplugin/v5/testing"
|
dbtesting "github.com/hashicorp/vault/sdk/database/dbplugin/v5/testing"
|
||||||
"github.com/hashicorp/vault/sdk/helper/docker"
|
"github.com/hashicorp/vault/sdk/helper/docker"
|
||||||
influx "github.com/influxdata/influxdb1-client/v2"
|
influx "github.com/influxdata/influxdb1-client/v2"
|
||||||
@@ -61,7 +61,8 @@ func prepareInfluxdbTestContainer(t *testing.T) (func(), *Config) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
runner, err := docker.NewServiceRunner(docker.RunOptions{
|
runner, err := docker.NewServiceRunner(docker.RunOptions{
|
||||||
ImageRepo: "influxdb",
|
ImageRepo: "docker.mirror.hashicorp.services/influxdb",
|
||||||
|
ContainerName: "influxdb",
|
||||||
ImageTag: "1.8-alpine",
|
ImageTag: "1.8-alpine",
|
||||||
Env: []string{
|
Env: []string{
|
||||||
"INFLUXDB_DB=vault",
|
"INFLUXDB_DB=vault",
|
||||||
|
|||||||
Reference in New Issue
Block a user