Skip to content

Commit 4826b93

Browse files
authored
Merge pull request #30 from YannikBramkamp/task/update-bitnami-images
use docker.io for bitnami images
2 parents 3c5e291 + deed96f commit 4826b93

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build/ci/.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dockers:
4141
- quay.io/mittwald/brudi:{{ .Major }}.{{ .Minor }}
4242
- quay.io/mittwald/brudi:{{ .Tag }}
4343
- quay.io/mittwald/brudi:stable
44-
binaries:
44+
ids:
4545
- brudi
4646
dockerfile: build/docker/Dockerfile
4747
goos: linux

test/pkg/source/mongodbtest/mongodb_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const dumpKind = "mongodump"
2929
const restoreKind = "mongorestore"
3030
const dbName = "test"
3131
const collName = "testColl"
32-
const mongoImage = "quay.io/bitnami/mongodb:latest"
32+
const mongoImage = "docker.io/bitnami/mongodb:latest"
3333
const logString = "Waiting for connections"
3434

3535
type MongoDumpAndRestoreTestSuite struct {

test/pkg/source/mysqltest/mysql_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const tableName = "testTable"
3737
// mysql and psql are a bit picky when it comes to localhost, use ip instead
3838
const hostName = "127.0.0.1"
3939
const logString = "ready for connections"
40-
const mysqlImage = "quay.io/bitnami/mysql:latest"
40+
const mysqlImage = "docker.io/bitnami/mysql:latest"
4141

4242
type MySQLDumpAndRestoreTestSuite struct {
4343
suite.Suite

test/pkg/source/postgrestest/postgres_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const dumpKind = "pgdump"
3737
// mysql and psql are a bit picky when it comes to localhost, use ip instead
3838
const hostName = "127.0.0.1"
3939
const dbDriver = "pgx"
40-
const pgImage = "quay.io/bitnami/postgresql:latest"
40+
const pgImage = "docker.io/bitnami/postgresql:latest"
4141
const plainKind = "plain"
4242

4343
type PGDumpAndRestoreTestSuite struct {

test/pkg/source/redisdump/redisdump_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const nameKey = "name"
3232
const typeKey = "type"
3333
const logString = "Ready to accept connections"
3434
const dumpKind = "redisdump"
35-
const redisImage = "quay.io/bitnami/redis:latest"
35+
const redisImage = "docker.io/bitnami/redis:latest"
3636

3737
type RedisDumpTestSuite struct {
3838
suite.Suite

0 commit comments

Comments
 (0)