Files
Deploy-Laboratory/docs/05-02-onenav首页面板.md
jack 8c43761962 feat: 按 doc_id 重组 ansible/files 与验证框架
- ansible/files 改为与文档 XX-YY 对齐的目录结构,更新相关 playbook 路径
- 新增 scripts/verify.sh 与 ansible/playbooks/verify/*.yml,移除单体 verify-matrix.yml
- 补充 docs/00-02 矩阵状态、00-05 验证框架与流程、00-04 环境与 ylc65 工作机说明
- 增加 k3s 存储准备、Longhorn、local-path 等 playbook 与辅助脚本

Made-with: Cursor
2026-03-26 07:01:14 +08:00

46 lines
875 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 05-02-OneNav 首页面板
> OneNav 运行在集群外(如 armv7 主机),通过 K3s Traefik 做静态转发接入。
---
## 在 armv7 部署 OneNav
使用 Docker 启动 OneNav确认本机可访问管理页面例如
```bash
docker run -d --name onenav \
-p 7070:7070 \
-v /data/onenav:/data \
helloz/onenav:latest
```
---
## 在 K3s 做静态转发
**唯一真源**[`ansible/files/05-02-onenav/onenav-proxy.yaml`](../ansible/files/05-02-onenav/onenav-proxy.yaml)(修改 `Endpoints` IP 与 `Ingress` host
应用方式:
```bash
kubectl apply -f ansible/files/05-02-onenav/onenav-proxy.yaml
```
---
## 验证
```bash
kubectl get svc,endpoints,ing -n default | grep -i onenav
curl -I --max-time 3 http://192.168.2.61/
```
---
## 下一步
- `05-01-k3s-部署homer首页面板.md`
- `03-04-k3s-cloudflare-tunnel-配置接入.md`