Skip to content

Commit

Permalink
Merge pull request #963 from michalvavrik/feature/fix-strimzi-kafka-d…
Browse files Browse the repository at this point in the history
…ocker-pull

Fix Apicurio docker image pull as Docker tag is case sensitive and use fixed Apicurio image
  • Loading branch information
mjurc authored Nov 24, 2023
2 parents a41e264 + 24c7e10 commit 232159f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ protected String getRegistryImageVersion() {
}
}

return registryImage.toLowerCase();
return registryImage;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public enum KafkaRegistry {
CONFLUENT("confluentinc/cp-schema-registry", "7.3.3", "/", 8081),
APICURIO("quay.io/apicurio/apicurio-registry-mem", "2.4.x-release", "/apis", 8080);
APICURIO("quay.io/apicurio/apicurio-registry-mem", "2.4.14.Final", "/apis", 8080);

private final String image;
private final String defaultVersion;
Expand Down

0 comments on commit 232159f

Please sign in to comment.