https://github.com/wbstack/charts
helm charts for wbstack deployments
https://github.com/wbstack/charts
charts helm kubernetes wbstack
Last synced: 14 days ago
JSON representation
helm charts for wbstack deployments
- Host: GitHub
- URL: https://github.com/wbstack/charts
- Owner: wbstack
- License: mit
- Created: 2021-09-24T08:20:05.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-02-06T14:44:46.000Z (about 1 month ago)
- Last Synced: 2026-03-04T03:17:44.567Z (19 days ago)
- Topics: charts, helm, kubernetes, wbstack
- Language: Python
- Homepage:
- Size: 506 KB
- Stars: 2
- Watchers: 7
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> ℹ️ Issues for this repository are tracked on [Phabricator](https://phabricator.wikimedia.org/project/board/5563/) - ([Click here to open a new one](https://phabricator.wikimedia.org/maniphest/task/edit/form/1/?tags=wikibase_cloud
))
# charts
[](https://artifacthub.io/packages/search?repo=wbstack)
This repository contains charts that can be used to deploy a wbstack like environment.
Some of these charts are pretty specific to the wbstack use case right now and could do with generalization.
Other charts are probably reusable as they are.
These charts are still in their early life and could do with becoming more uniform, documented and follow more best practices.
## Usage
```sh
helm repo add wbstack https://wbstack.github.io/charts
```
Or in a helmfile
```yaml
repositories:
- name: wbstack
url: https://wbstack.github.io/charts
```
## Contributing
### Linting
This repository is linted using [chart-testing](https://github.com/helm/chart-testing).
This is both setup for Github Actions, and also runnable locally using a docker image.
```sh
make lint
```
### Releases
Anything merged into the `main` branch will result in releasing of new charts powered by Github Actions, and thus the touched chart versions must be bumped.]
Versions are built, tagged and created as github releases.
Github pages hosts the manifest file for all releases which is built on every release.
You can see the manifest in [the branch](https://github.com/wbstack/charts/blob/gh-pages/index.yaml) or on [github pages](https://wbstack.github.io/charts/index.yaml).
You can read more about releasing using these links:
- https://artifacthub.io/docs/topics/repositories/#helm-charts-repositories
- https://helm.sh/docs/howto/chart_releaser_action/