move bitnami to bitnamilegacy - test scope
This commit is contained in:
parent
281895659f
commit
38707da5af
@ -31,7 +31,7 @@ import java.util.concurrent.TimeUnit;
|
||||
public class AbstractRedisClusterContainer {
|
||||
|
||||
static final String NODES = "127.0.0.1:6371,127.0.0.1:6372,127.0.0.1:6373,127.0.0.1:6374,127.0.0.1:6375,127.0.0.1:6376";
|
||||
static final String IMAGE = "bitnami/valkey-cluster:8.0";
|
||||
static final String IMAGE = "bitnamilegacy/valkey-cluster:8.0";
|
||||
static final Map<String,String> ENVS = Map.of(
|
||||
"VALKEY_CLUSTER_ANNOUNCE_IP", "127.0.0.1",
|
||||
"VALKEY_CLUSTER_DYNAMIC_IPS", "no",
|
||||
|
||||
@ -27,7 +27,7 @@ import java.util.List;
|
||||
public class AbstractRedisContainer {
|
||||
|
||||
@ClassRule(order = 0)
|
||||
public static GenericContainer redis = new GenericContainer("bitnami/valkey:8.0")
|
||||
public static GenericContainer redis = new GenericContainer("bitnamilegacy/valkey:8.0")
|
||||
.withEnv("ALLOW_EMPTY_PASSWORD","yes")
|
||||
.withLogConsumer(s -> log.warn(((OutputFrame) s).getUtf8String().trim()))
|
||||
.withExposedPorts(6379);
|
||||
|
||||
@ -33,7 +33,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
public class RedisJUnit5Test {
|
||||
|
||||
@Container
|
||||
private static final GenericContainer REDIS = new GenericContainer("bitnami/valkey:8.0")
|
||||
private static final GenericContainer REDIS = new GenericContainer("bitnamilegacy/valkey:8.0")
|
||||
.withEnv("ALLOW_EMPTY_PASSWORD","yes")
|
||||
.withLogConsumer(s -> log.error(((OutputFrame) s).getUtf8String().trim()))
|
||||
.withExposedPorts(6379);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user