Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Node Guardian — K8s 节点运维工具箱
# 部署为 DaemonSet,在集群每个节点上运行诊断/安全/备份工具
# 镜像构建: docker build -t ghcr.io/290298661-pixel/node-guardian:latest .
# 镜像构建: docker build -t ghcr.io/Shaohan-He/node-guardian:latest .

FROM alpine:3.21

LABEL org.opencontainers.image.source="https://github.com/290298661-pixel/node-guardian"
LABEL org.opencontainers.image.source="https://github.com/Shaohan-He/node-guardian"
LABEL org.opencontainers.image.description="K8s node ops toolkit — preflight, diagnose, security, backup"

# 安装必要工具
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Node Guardian 是一组面向 Kubernetes 节点的 Bash 运维工具。它把常
## 快速开始

```bash
git clone https://github.com/290298661-pixel/node-guardian.git
git clone https://github.com/Shaohan-He/node-guardian.git
cd node-guardian

# 预览节点预检会执行的变更
Expand Down Expand Up @@ -169,10 +169,10 @@ bats tests/ --recursive

| 仓库 | 关系 |
| --- | --- |
| [node-health-watcher](https://github.com/290298661-pixel/node-health-watcher) | 可在发现节点异常后触发人工或自动诊断流程 |
| [fleet-observability](https://github.com/290298661-pixel/fleet-observability) | 可采集 Node Guardian 输出的日志或 textfile 指标 |
| [fleet-gitops](https://github.com/290298661-pixel/fleet-gitops) | 可管理 DaemonSet 或 Job 形式的部署配置 |
| [node-health-watcher](https://github.com/Shaohan-He/node-health-watcher) | 可在发现节点异常后触发人工或自动诊断流程 |
| [fleet-observability](https://github.com/Shaohan-He/fleet-observability) | 可采集 Node Guardian 输出的日志或 textfile 指标 |
| [fleet-gitops](https://github.com/Shaohan-He/fleet-gitops) | 可管理 DaemonSet 或 Job 形式的部署配置 |

## License

MIT © 2026 [Shaohan He](https://github.com/290298661-pixel)
MIT © 2026 [Shaohan He](https://github.com/Shaohan-He)
2 changes: 1 addition & 1 deletion deploy/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ spec:
hostPID: true
containers:
- name: node-guardian
image: ghcr.io/290298661-pixel/node-guardian:latest
image: ghcr.io/Shaohan-He/node-guardian:latest
imagePullPolicy: IfNotPresent
env:
- name: NODE_GUARDIAN_LOG_DIR
Expand Down
Loading