Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neo9/helm-charts
https://github.com/neo9/helm-charts
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/neo9/helm-charts
- Owner: neo9
- Created: 2023-04-25T10:30:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-08T13:51:26.000Z (6 months ago)
- Last Synced: 2024-07-08T17:18:47.070Z (6 months ago)
- Language: Smarty
- Size: 1.7 MB
- Stars: 0
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# helm-charts
This repository hosts some Helm Charts that we use at Neo9. \
https://neo9.fr/
## Requirements
- Helm 3# Usage
Add repo with:
```
helm repo add n9 https://neo9.github.io/helm-charts
helm repo update n9
```# Development
## How to test a chart locally
1. Lint your current chart
```
helm lint charts/mychartname
```2. Template with default values
```
helm template charts/mychartname
```3. Template with test values
Create a `testvalues.yaml` which contains values you wish to test
```
helm template testname charts/mychartname -f testvalues.yaml
```## How to generate a chart README.md
Using `norwoodj/helm-docs`
1. Add comments in your default `values.yaml` following this format
```
service:
# -- Port to access on the pod if different from port used by service
targetPort:
```2. Generate or update README for your charts
```
cd charts/mcyhartname
helm-docs -s file
```