Skip to content

Commit 475eaa5

Browse files
authoredMay 1, 2024··
[chore] specify default value for tracetest image version (#1551)
* specify default value for tracetest image version * update tracetest to v1.0.0
1 parent 61d6a5f commit 475eaa5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎.env

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ OPENSEARCH_IMAGE=opensearchproject/opensearch:2.12.0
1414
POSTGRES_IMAGE=postgres:16.2
1515
PROMETHEUS_IMAGE=quay.io/prometheus/prometheus:v2.51.1
1616
REDIS_IMAGE=redis:7.2-alpine
17-
TRACETEST_IMAGE_VERSION=v0.16.0
18-
TRACETEST_IMAGE=kubeshop/tracetest:${TRACETEST_IMAGE_VERSION}
17+
TRACETEST_IMAGE=kubeshop/tracetest:v1.0.0
1918

2019
# Demo Platform
2120
ENV_PLATFORM=local

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ the release.
2525
([#1528](https://github.com/open-telemetry/opentelemetry-demo/pull/1528))
2626
* [otelcollector] Add `redisreceiver`
2727
([#1537](https://github.com/open-telemetry/opentelemetry-demo/pull/1537))
28+
* [traceBasedTests] update to v1.0.0
29+
([#1551](https://github.com/open-telemetry/opentelemetry-demo/pull/1551))
2830

2931
## 1.9.0
3032

‎docker-compose.yml

-2
Original file line numberDiff line numberDiff line change
@@ -778,8 +778,6 @@ services:
778778
build:
779779
context: ./
780780
dockerfile: ./test/tracetesting/Dockerfile
781-
args:
782-
- TRACETEST_IMAGE_VERSION
783781
environment:
784782
- AD_SERVICE_ADDR
785783
- CART_SERVICE_ADDR

‎test/tracetesting/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ FROM alpine
66

77
WORKDIR /app
88

9-
ARG TRACETEST_IMAGE_VERSION
9+
# The build-images workflow action does not set a build-arg so we need to specify a default value here
10+
ARG TRACETEST_IMAGE_VERSION=v1.0.0
1011

1112
RUN apk --update add bash jq curl
12-
RUN curl -L https://raw.githubusercontent.com/kubeshop/tracetest/main/install-cli.sh | bash -s -- ${TRACETEST_IMAGE_VERSION}
13+
RUN curl -L https://raw.githubusercontent.com/kubeshop/tracetest/main/install-cli.sh | bash -s -- $TRACETEST_IMAGE_VERSION
1314

1415
WORKDIR /app/test/tracetesting
1516

0 commit comments

Comments
 (0)
Please sign in to comment.