Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fullstack-devops/helm-charts
https://github.com/fullstack-devops/helm-charts
helm helm-charts kubernetes
Last synced: about 1 hour ago
JSON representation
- Host: GitHub
- URL: https://github.com/fullstack-devops/helm-charts
- Owner: fullstack-devops
- License: apache-2.0
- Created: 2022-01-12T06:13:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-06T18:38:27.000Z (over 1 year ago)
- Last Synced: 2024-11-25T22:22:03.517Z (2 months ago)
- Topics: helm, helm-charts, kubernetes
- Language: Smarty
- Homepage: https://fullstack-devops.github.io/helm-charts/
- Size: 168 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FullStack DevOps collection of helm charts
## Usage
[Helm](https://helm.sh) must be installed to use the charts. Please refer to
Helm's [documentation](https://helm.sh/docs) to get started.Once Helm has been set up correctly, add the repo as follows:
helm repo add fs-devops https://fullstack-devops.github.io/helm-charts/
If you had already added this repo earlier, run `helm repo update` to retrieve
the latest versions of the packages. You can then run `helm search repo fsops` to see the charts.To install a chart:
helm install my- fs-devops/
To uninstall the chart:
helm delete my-
## Charts
| Name | Description | Docs |
| --------------------- | ------------------------------- | ------------------------------------- |
| excalidraw | Chart for excalidraw | [link](charts/excalidraw/) |
| github-actions-runner | Chart for github-actions-runner | [link](charts/github-actions-runner/) |## Dev
### helm-docs
```bash
go install github.com/norwoodj/helm-docs/cmd/helm-docs@latest
helm-docs -t templates/README.md.gotmpl
```### Pre-commit hook
If you want to automatically generate `README.md` files with a pre-commit hook, make sure you
[install the pre-commit binary](https://pre-commit.com/#install), and add a [.pre-commit-config.yaml file](./.pre-commit-config.yaml)
to your project. Then run:```bash
pre-commit install
pre-commit install-hooks
```Future changes to your chart's `requirements.yaml`, `values.yaml`, `Chart.yaml`, or `README.md.gotmpl` files will cause an update to documentation when you commit.