Skip to content

Commit fdff655

Browse files
test
Signed-off-by: chahat sagar <[email protected]>
1 parent 88e7cc5 commit fdff655

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/ci-docker-hotrod.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
runtime: [docker, k8s]
26-
jaeger-version: [v2]
26+
jaeger-version: [v1, v2]
27+
exclude:
28+
- runtime: k8s
29+
jaeger-version: v1
2730

2831
steps:
2932
- uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0

examples/oci/deploy-all.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,9 @@ if [[ "$MODE" == "local" ]]; then
7474
--set hotrod.image.repository="jaegertracing/example-hotrod" \
7575
--set hotrod.image.tag="latest" \
7676
--set hotrod.image.pullPolicy="Never" \
77-
--set hotrod.args[0]="all" \
78-
--set hotrod.tracing.host="jaeger" \
79-
--set hotrod.tracing.port="6831" \
8077
--set-file userconfig="./config.yaml" \
81-
--set-file uiconfig="./ui-config.json"
78+
--set-file uiconfig="./ui-config.json" \
79+
-f ./jaeger-values.yaml
8280
else
8381
echo "🟣 Deploying Jaeger..."
8482
helm $HELM_JAEGER_CMD jaeger ./helm-charts/charts/jaeger \

scripts/build/build-hotrod-image.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ else
184184
fi
185185

186186
if [[ "${runtime}" == "k8s" ]]; then
187-
HOTROD_URL="http://localhost:8080"
188-
JAEGER_QUERY_URL="http://localhost:16686"
187+
HOTROD_URL="http://localhost:8080/hotrod"
188+
JAEGER_QUERY_URL="http://localhost:16686/jaeger"
189189
else
190190
HOTROD_URL="http://localhost:8080"
191191
JAEGER_QUERY_URL="http://localhost:16686"

0 commit comments

Comments
 (0)