https://github.com/esnet/ma-helm-charts
Measurements and Analysis Helm Chats
https://github.com/esnet/ma-helm-charts
Last synced: about 2 months ago
JSON representation
Measurements and Analysis Helm Chats
- Host: GitHub
- URL: https://github.com/esnet/ma-helm-charts
- Owner: esnet
- Created: 2025-11-05T18:10:39.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2026-05-04T16:46:54.000Z (2 months ago)
- Last Synced: 2026-05-04T18:19:32.889Z (2 months ago)
- Size: 156 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ma-helm-charts
## Getting started
Helm Dependency:
```sh
cd charts/
helm dependency update
```
Once you commit someting into main a Github Action will releas all artifacts and update the index page at: https://software.es.net/ma-helm-charts/index.yaml
## Note
All chars here are public and being pushed to a public registry.
## Using the repo
All artifacts are currently published to our OCI registry:
```sh
gcloud artifacts packages list \
--repository=inf-helm \
--location=us-central1 \
--project=ma-infrastructure-474617
```
### Show chart
```sh
helm show chart oci://us-central1-docker.pkg.dev/ma-infrastructure-474617/inf-helm/load-balancer
```
## Install chart
```sh
helm install my-release oci://us-central1-docker.pkg.dev/ma-infrastructure-474617/inf-helm/load-balancer --version 0.1.2
```
## Testing
```sh
brew install chart-testing
```
ct install --all
```sh
helm plugin install https://github.com/helm-unittest/helm-unittest
```
### Linting
```sh
ct lint charts ## validates said charts, is also invoked by CICD
```
### CICD
Every MR will push create a temporary tag you can use for testing:
example:
```sh
helm pull helm pull oci://us-central1-docker.pkg.dev/ma-infrastructure-474617/inf-helm/clickhouse --version 0.0.3-dev-f6b6158
## Or to install
helm install foobar oci://us-central1-docker.pkg.dev/ma-infrastructure-474617/inf-helm/clickhouse --version 0.0.3-dev-f6b6158 (--set namePrefix=foobar optional) --create-namespace
```