File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -58,11 +58,13 @@ if [[ "$MODE" == "local" ]]; then
58
58
--set provisionDataStore.cassandra=false \
59
59
--set allInOne.enabled=true \
60
60
--set storage.type=memory \
61
- --set allInOne.image.repository=" localhost:5000/ jaegertracing/all-in-one" \
61
+ --set allInOne.image.repository=" jaegertracing/all-in-one" \
62
62
--set allInOne.image.tag=" latest" \
63
+ --set allInOne.image.pullPolicy=" Never" \
63
64
--set hotrod.enabled=true \
64
- --set hotrod.image.repository=" localhost:5000/ jaegertracing/example-hotrod" \
65
+ --set hotrod.image.repository=" jaegertracing/example-hotrod" \
65
66
--set hotrod.image.tag=" latest" \
67
+ --set hotrod.image.pullPolicy=" Never" \
66
68
--set hotrod.args[0]=" all" \
67
69
--set hotrod.extraEnv[0].name=" JAEGER_AGENT_HOST" \
68
70
--set hotrod.extraEnv[0].value=" localhost" \
Original file line number Diff line number Diff line change @@ -132,6 +132,9 @@ if [[ "${runtime}" == "k8s" ]]; then
132
132
fi
133
133
134
134
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
135
138
bash ./examples/oci/deploy-all.sh local
136
139
kubectl wait --for=condition=available --timeout=180s deployment/jaeger-hotrod
137
140
kubectl wait --for=condition=available --timeout=180s deployment/jaeger
You can’t perform that action at this time.
0 commit comments