https://github.com/steedos/charts
Helm charts for steedos platform
https://github.com/steedos/charts
Last synced: 7 months ago
JSON representation
Helm charts for steedos platform
- Host: GitHub
- URL: https://github.com/steedos/charts
- Owner: steedos
- Created: 2022-06-23T01:53:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-17T03:05:44.000Z (about 3 years ago)
- Last Synced: 2025-01-12T14:29:03.657Z (9 months ago)
- Language: Smarty
- Size: 42 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# charts
Helm charts for steedos platform### 安装 steedos-community
1、cd steedos-community
2、helm install -n namespace steedos-community ./steedos-community-0.1.0.tgz
### 修改环境变量
cd steedos-community/2.2
vi values.yaml
```yaml
services:
steedos:
config:
root_url: "http://localhost:3000"
store: "local"
folder: "/app/storage"
cacher: "redis://redis:6379"
transporter: "redis://redis:6379/2"
mongo_url: "mongodb://mongodb:27017/steedos"
mongo_oplog_url: "mongodb://mongodb:27017/local"
storageClass: "resize-sc"
storage: "1Gi"
installed_packages_storage: "1Gi"
```### 更新服务
```
cd steedos-communityhelm upgrade -n namespace steedos-community ./steedos-community-0.1.0.tgz -f 2.2/values.yaml
```### 卸载服务
```
helm uninstall steedos-community -n namespace
```