Skip to content

Commit

Permalink
Fix Redpanda repo in integration tests
Browse files Browse the repository at this point in the history
Signed-off-by: Mihai Todor <[email protected]>
  • Loading branch information
mihaitodor committed Mar 4, 2025
1 parent 83a56d6 commit 75adc08
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion internal/impl/kafka/enterprise/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ func startRedpanda(t *testing.T, pool *dockertest.Pool, exposeBroker bool, autoc
}

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
Cmd: cmd,
Expand Down
8 changes: 4 additions & 4 deletions internal/impl/kafka/integration_franz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func TestIntegrationFranz(t *testing.T) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down Expand Up @@ -213,7 +213,7 @@ func TestIntegrationFranzSasl(t *testing.T) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down Expand Up @@ -324,7 +324,7 @@ func TestIntegrationFranzOutputFixedTimestamp(t *testing.T) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down Expand Up @@ -396,7 +396,7 @@ func BenchmarkIntegrationFranz(b *testing.B) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down
6 changes: 3 additions & 3 deletions internal/impl/kafka/integration_sarama_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func TestIntegrationSaramaCheckpointOneLockUp(t *testing.T) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down Expand Up @@ -213,7 +213,7 @@ func TestIntegrationSaramaRedpanda(t *testing.T) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down Expand Up @@ -676,7 +676,7 @@ func TestIntegrationSaramaOutputFixedTimestamp(t *testing.T) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down
8 changes: 4 additions & 4 deletions internal/impl/kafka/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func TestIntegrationRedpanda(t *testing.T) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down Expand Up @@ -265,7 +265,7 @@ func TestIntegrationRedpandaSasl(t *testing.T) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down Expand Up @@ -373,7 +373,7 @@ func TestIntegrationRedpandaOutputFixedTimestamp(t *testing.T) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down Expand Up @@ -445,7 +445,7 @@ func BenchmarkIntegrationRedpanda(b *testing.B) {
kafkaPortStr := strconv.Itoa(kafkaPort)

options := &dockertest.RunOptions{
Repository: "redpandadata/redpanda",
Repository: "docker.redpanda.com/redpandadata/redpanda",
Tag: "latest",
Hostname: "redpanda",
ExposedPorts: []string{"9092/tcp"},
Expand Down

0 comments on commit 75adc08

Please sign in to comment.