Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import edu.umd.cs.findbugs.annotations.Nullable;

public class VaultTestKmsFacade extends AbstractVaultTestKmsFacade {
private static final DockerImageName HASHICORP_VAULT = DockerImageName.parse("hashicorp/vault:1.21.1");
private static final DockerImageName HASHICORP_VAULT = DockerImageName.parse("hashicorp/vault:1.21.2");

@SuppressWarnings("rawtypes")
private @Nullable VaultContainer vaultContainer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class TestVault implements Closeable {
public static final int PLAIN_PORT = 8200;
private static final String VAULT_TOKEN = "token";

private static final DockerImageName HASHICORP_VAULT = DockerImageName.parse("hashicorp/vault:1.21.1");
private static final DockerImageName HASHICORP_VAULT = DockerImageName.parse("hashicorp/vault:1.21.2");

private final VaultContainer<?> vault;
private final URI endpoint;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
server:
image:
repository: "mirror.gcr.io/hashicorp/vault"
tag: 1.21.1
tag: 1.21.2
dev:
enabled: true
ha:
Expand Down
2 changes: 1 addition & 1 deletion performance-tests/perf-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ KROXYLICIOUS_VERSION=${KROXYLICIOUS_VERSION:-$(mvn -f "${KROXYLICIOUS_CHECKOUT}"
KAFKA_TOOL_IMAGE=${KAFKA_TOOL_IMAGE:-quay.io/strimzi/kafka:${STRIMZI_VERSION}-kafka-${KAFKA_VERSION}}
KAFKA_IMAGE=${KAFKA_IMAGE:-"${DOCKER_REGISTRY}/apache/kafka-native:${KAFKA_VERSION}"}
KROXYLICIOUS_IMAGE=${KROXYLICIOUS_IMAGE:-"quay.io/kroxylicious/kroxylicious:${KROXYLICIOUS_VERSION}"}
VAULT_IMAGE=${VAULT_IMAGE:-"${DOCKER_REGISTRY}/hashicorp/vault:1.21.1"}
VAULT_IMAGE=${VAULT_IMAGE:-"${DOCKER_REGISTRY}/hashicorp/vault:1.21.2"}
PERF_NETWORK=performance-tests_perf_network
CONTAINER_ENGINE=${CONTAINER_ENGINE:-"docker"}
TEST_NAME="warmup"
Expand Down