首次提交:初始化项目

This commit is contained in:
fei
2026-02-05 00:11:05 +08:00
commit 26eaf8110b
171 changed files with 17105 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
# 部署导航服务
echo "部署导航服务..."
kubectl apply -f deployment.yaml
# 等待部署完成
echo "等待导航服务启动..."
kubectl wait --for=condition=ready pod -l app=navigation -n navigation --timeout=300s
# 显示状态
echo ""
echo "导航服务部署完成!"
kubectl get pods -n navigation
kubectl get svc -n navigation
kubectl get ingress -n navigation
echo ""
echo "访问地址: https://dh.u6.net3w.com"