代码拉取完成,页面将自动刷新
#!/bin/bash
echo "Applying the Kubernetes manifests for this demo..."
kubectl apply -f kind/
# Wait for the pod starting with "db" to be running
while [[ $(kubectl get pods --no-headers | grep 'database' | awk '{print $3}') != "Running" ]]; do
echo "Waiting for the database pod to be running..."
sleep 5
done
# Wait for the pod starting with "bot" to be running
while [[ $(kubectl get pods --no-headers | grep 'bot' | awk '{print $3}') != "Running" ]]; do
echo "Waiting for the ChatBot pod to be running..."
sleep 5
done
echo "Forwarding the Chat Bot pod..."
kubectl port-forward svc/bot 8501:8501 &
echo "Forwarding the Weave Scope App..."
kubectl port-forward -n weave "$(kubectl get -n weave pod --selector=weave-scope-component=app -o jsonpath='{.items..metadata.name}')" 4040 &
echo "Opening the Chat Bot app..."
open http://localhost:8501
echo "Opening the Weave Scope app..."
open http://localhost:4040
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。