Ciliverse Helm Charts 仓库。站点:https://charts.cillian.website
当前 cilikube Chart:1.0.0(app v1.0.0,默认镜像 ghcr.io/ciliverse/cilikube{,-web}:v1.0.0)。
helm repo add ciliverse https://charts.cillian.website
helm repo update
helm search repo ciliverse
# release 模式必须设置强密钥(JWT ≥16;encryptionKey 恰好 32 字符)
helm install cilikube ciliverse/cilikube \
--namespace cilikube --create-namespace \
--set secrets.jwtSecret="$(openssl rand -hex 32)" \
--set secrets.encryptionKey="$(openssl rand -hex 16)"
helm install monitor-operator ciliverse/monitor-operator \
--namespace monitoring --create-namespace| Chart | 最新版本 | 说明 |
|---|---|---|
| cilikube | 1.0.0 | 多集群控制台 + AI + Fleet(源码来自 cilikube) |
| monitor-operator | 0.1.0 | 监控栈 Operator |
Chart 源码真相源:cilikube/deployments/helm/cilikube。本仓库只做发布镜像。
# 同机已有 cilikube 克隆时:
./sync-cilikube-chart.sh
# 或指定路径:
./sync-cilikube-chart.sh /path/to/cilikube流程:
- 在 cilikube 仓库改 Chart / 升版本号
- 运行
./sync-cilikube-chart.sh(rsync →helm package→ 更新index.yaml) - 更新
ciliverse/charts/index.html的 banner / 资产列表(如有需要) - 提交本仓库,并将
ciliverse/charts/发布到charts.cillian.website
.
├── ciliverse/
│ ├── charts/ # 对外托管:*.tgz + index.yaml + index.html
│ ├── cilikube/ # cilikube chart 镜像源码
│ └── monitor-operator/ # monitor-operator chart 源码
├── sync-cilikube-chart.sh # 从 cilikube 同步并打包
└── README.md
# 示例:rsync 到静态站点根目录
rsync -av --delete ciliverse/charts/ user@server:/var/www/charts/或 push 本仓库后由现有 CI/主机拉取。
- 站点:https://charts.cillian.website
- 索引:https://charts.cillian.website/index.yaml
- CiliKube:https://github.com/ciliverse/cilikube
- Demo:https://cilikube.cillian.website
MIT