Skip to content

Commit

Permalink
Update scripts to use arm image
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiddlet2666 committed Feb 17, 2025
1 parent ea2514d commit cd9f064
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions scripts/run-compat-ce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,31 @@
set -e

echo "Coherence CE 22.06.10"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=22.06.10 make clean build-test-images test-e2e-standalone
COHERENCE_BASE_IMAGE=arm64v8/openjdk:17-jdk COHERENCE_VERSION=22.06.10 make clean build-test-images test-e2e-standalone

echo "Coherence CE 14.1.2-0-0"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=14.1.2-0-0 make clean build-test-images test-e2e-standalone
COHERENCE_BASE_IMAGE=arm64v8/openjdk:17-jdk COHERENCE_VERSION=14.1.2-0-0 make clean build-test-images test-e2e-standalone

echo "Coherence CE 24.09"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=24.09 make clean build-test-images test-e2e-standalone
echo "Coherence CE 24.09.3"
COHERENCE_BASE_IMAGE=arm64v8/openjdk:17-jdk COHERENCE_VERSION=24.09.3 make clean build-test-images test-e2e-standalone

echo "Coherence CE 24.09 with Executor"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 PROFILES=,executor COHERENCE_VERSION=24.09 make clean build-test-images test-e2e-standalone
COHERENCE_BASE_IMAGE=arm64v8/openjdk:17-jdk PROFILES=,executor COHERENCE_VERSION=24.09 make clean build-test-images test-e2e-standalone

echo "Coherence CE 14.1.1-0-19"
COHERENCE_VERSION=14.1.1-0-19 make clean build-test-images test-e2e-standalone

echo "Coherence CE 24.09 with Topics"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 PROFILES=,topics COHERENCE_VERSION=24.09 make clean build-test-images test-e2e-topics
echo "Coherence CE 24.09.3 with Topics"
COHERENCE_BASE_IMAGE=arm64v8/openjdk:17-jdk PROFILES=,topics COHERENCE_VERSION=24.09.3 make clean build-test-images test-e2e-topics

echo "Coherence CE 24.09 with View Caches"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 PROFILES=,views COHERENCE_VERSION=24.09 make clean build-view-images test-e2e-views
echo "Coherence CE 24.09.3 with View Caches"
COHERENCE_BASE_IMAGE=arm64v8/openjdk:17-jdk PROFILES=,views COHERENCE_VERSION=24.09.3 make clean build-view-images test-e2e-views

# Security Enabled
export COMPUTERNAME=server1
export COHERENCE_TLS_CERTS_PATH=`pwd`/test/test_utils/certs/guardians-ca.crt
export COHERENCE_TLS_CLIENT_CERT=`pwd`/test/test_utils/certs/star-lord.crt
export COHERENCE_TLS_CLIENT_KEY=`pwd`/test/test_utils/certs/star-lord.key COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=24.09 PROFILES=,secure make clean certs build-test-images test-cluster-startup
export COHERENCE_TLS_CLIENT_KEY=`pwd`/test/test_utils/certs/star-lord.key COHERENCE_BASE_IMAGE=arm64v8/openjdk:17-jdk COHERENCE_VERSION=24.09 PROFILES=,secure make clean certs build-test-images test-cluster-startup
cohctl set ignore-certs true
cohctl add cluster tls -u https://127.0.0.1:30000/management/coherence/cluster
cohctl get members
Expand Down

0 comments on commit cd9f064

Please # to comment.