https://github.com/kubesphere/helm-charts
Source & Repo of https://charts.kubesphere.io/main & https://charts.kubesphere.io/test
https://github.com/kubesphere/helm-charts
app charts helm helm-chart helm-charts kubernetes kubesphere qingcloud
Last synced: 6 months ago
JSON representation
Source & Repo of https://charts.kubesphere.io/main & https://charts.kubesphere.io/test
- Host: GitHub
- URL: https://github.com/kubesphere/helm-charts
- Owner: kubesphere
- Created: 2019-02-13T02:08:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T15:28:40.000Z (over 1 year ago)
- Last Synced: 2024-04-14T00:58:04.797Z (over 1 year ago)
- Topics: app, charts, helm, helm-chart, helm-charts, kubernetes, kubesphere, qingcloud
- Language: Mustache
- Homepage:
- Size: 38.4 MB
- Stars: 98
- Watchers: 7
- Forks: 169
- Open Issues: 26
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Helm Charts for KubeSphere
## How to install these charts
Find the repository you want to use under `src/` directory and enter below command:
```shell
helm repo add main https://charts.kubesphere.io/main
```## How to contribute
### To an existing Helm repo
Just place your charts under the repo, e.g.
```shell
src/
├── main/
│ └── example-chart/
│ ├── Chart.yaml
│ ├── values.yaml
│ ├── templates/
│ └── ...
```### To a new Helm repo
Just create a directory under `src/` for the new repo, and place your charts under it, e.g.
```shell
src/
├── main/
│ └── ...
├── example-repo/
│ └── example-chart/
│ ├── Chart.yaml
│ ├── values.yaml
│ ├── templates/
│ └── ...
```