Skip to content

Commit 2bdfe28

Browse files
changes
Signed-off-by: chahat sagar <[email protected]>
1 parent dc21563 commit 2bdfe28

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

examples/oci/deploy-all.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,9 @@ echo "Then open:"
9090
echo "🔍 Jaeger: http://localhost:16686/jaeger"
9191
echo "📈 Prometheus: http://localhost:9090"
9292
echo "📊 Grafana: http://localhost:9091"
93-
echo "🚕 HotROD: http://localhost:8080"
93+
echo "🚕 HotROD: http://localhost:8080"
94+
echo "🚕 HotROD: http://localhost:8080"
95+
echo ""
96+
echo "📝 Note: If you made changes to Jaeger configuration files (e.g., config.yaml, ui-config.json), you may need to run this script in clean mode:"
97+
echo " ./deploy-all.sh clean"
98+
echo "Or manually restart the CI workflow to ensure your changes are applied."

scripts/build/build-hotrod-image.sh

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

134134
echo '::group:: run on Kubernetes'
135-
kustomize build ./examples/hotrod/kubernetes | kubectl apply -n example-hotrod -f -
136-
kubectl wait --for=condition=available --timeout=180s -n example-hotrod deployment/example-hotrod
135+
bash ./examples/oci/deploy-all.sh clean
137136

138-
kubectl port-forward -n example-hotrod service/example-hotrod 8080:frontend &
137+
kubectl port-forward svc/jaeger-hotrod 8080:80 &
139138
HOTROD_PORT_FWD_PID=$!
140-
kubectl port-forward -n example-hotrod service/jaeger 16686:frontend &
139+
kubectl port-forward svc/jaeger-query 16686:16686 &
141140
JAEGER_PORT_FWD_PID=$!
142141
echo '::endgroup::'
143142

0 commit comments

Comments
 (0)