Skip to content

Commit f8f1ee3

Browse files
authored
Remove -test- component to all Sample App Images (#81)
1 parent 50f240e commit f8f1ee3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/main-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
env:
8484
INSTANCE_ID: ${{ github.run_id }}-${{ github.run_number }}
8585
LISTEN_ADDRESS: 0.0.0.0:8080
86-
APP_IMAGE: public.ecr.aws/aws-otel-test/aws-otel-java-test-springboot:${{ github.sha }}
86+
APP_IMAGE: public.ecr.aws/aws-otel-test/aws-otel-java-springboot:${{ github.sha }}
8787
VALIDATOR_COMMAND: -c springboot-otel-trace-metric-validation.yml --endpoint http://app:8080 --metric-namespace aws-otel-integ-test -t ${{ github.run_id }}-${{ github.run_number }}
8888

8989
test_Spark_App_With_Java_Agent:
@@ -114,7 +114,7 @@ jobs:
114114
env:
115115
INSTANCE_ID: ${{ github.run_id }}-${{ github.run_number }}
116116
LISTEN_ADDRESS: 0.0.0.0:4567
117-
APP_IMAGE: public.ecr.aws/aws-otel-test/aws-otel-java-test-spark:${{ github.sha }}
117+
APP_IMAGE: public.ecr.aws/aws-otel-test/aws-otel-java-spark:${{ github.sha }}
118118
VALIDATOR_COMMAND: -c spark-otel-trace-metric-validation.yml --endpoint http://app:4567 --metric-namespace aws-otel-integ-test -t ${{ github.run_id }}-${{ github.run_number }}
119119

120120
test_Spark_AWS_SDK_V1_App_With_Java_Agent:

sample-apps/spark/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ application {
2424

2525
jib {
2626
to {
27-
image = "public.ecr.aws/aws-otel-test/aws-otel-java-test-spark:${System.getenv("COMMIT_HASH")}"
27+
image = "public.ecr.aws/aws-otel-test/aws-otel-java-spark:${System.getenv("COMMIT_HASH")}"
2828
}
2929
from {
3030
image = "public.ecr.aws/aws-otel-test/aws-opentelemetry-java-base:alpha"

sample-apps/springboot/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies {
1616

1717
jib {
1818
to {
19-
image = "public.ecr.aws/aws-otel-test/aws-otel-java-test-springboot:${System.getenv("COMMIT_HASH")}"
19+
image = "public.ecr.aws/aws-otel-test/aws-otel-java-springboot:${System.getenv("COMMIT_HASH")}"
2020
}
2121
from {
2222
image = "public.ecr.aws/aws-otel-test/aws-opentelemetry-java-base:alpha"

0 commit comments

Comments
 (0)