Skip to content

Commit a332851

Browse files
test
Signed-off-by: chahat sagar <[email protected]>
1 parent da6a60a commit a332851

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

examples/oci/deploy-all.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,13 @@ if [[ "$MODE" == "local" ]]; then
5858
--set provisionDataStore.cassandra=false \
5959
--set allInOne.enabled=true \
6060
--set storage.type=memory \
61-
--set allInOne.image.repository="localhost:5000/jaegertracing/all-in-one" \
61+
--set allInOne.image.repository="jaegertracing/all-in-one" \
6262
--set allInOne.image.tag="latest" \
63+
--set allInOne.image.pullPolicy="Never" \
6364
--set hotrod.enabled=true \
64-
--set hotrod.image.repository="localhost:5000/jaegertracing/example-hotrod" \
65+
--set hotrod.image.repository="jaegertracing/example-hotrod" \
6566
--set hotrod.image.tag="latest" \
67+
--set hotrod.image.pullPolicy="Never" \
6668
--set hotrod.args[0]="all" \
6769
--set hotrod.extraEnv[0].name="JAEGER_AGENT_HOST" \
6870
--set hotrod.extraEnv[0].value="localhost" \

scripts/build/build-hotrod-image.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ if [[ "${runtime}" == "k8s" ]]; then
132132
fi
133133

134134
echo '::group:: run on Kubernetes'
135+
echo '::group:: Loading images into Kind cluster'
136+
kind load docker-image localhost:5000/jaegertracing/all-in-one:latest
137+
kind load docker-image localhost:5000/jaegertracing/example-hotrod:latest
135138
bash ./examples/oci/deploy-all.sh local
136139
kubectl wait --for=condition=available --timeout=180s deployment/jaeger-hotrod
137140
kubectl wait --for=condition=available --timeout=180s deployment/jaeger

0 commit comments

Comments
 (0)