https://github.com/dvob/helm-charts
https://github.com/dvob/helm-charts
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dvob/helm-charts
- Owner: dvob
- Created: 2025-08-09T14:55:08.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-09T14:55:33.000Z (10 months ago)
- Last Synced: 2025-10-19T14:57:55.171Z (8 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example Helm Charts
## OCI
```
helm registry login registry-1.docker.io
helm package myapp
helm push myapp-0.0.1.tgz oci://registry-1.docker.io/dvob
```
Use the normal commands with charts from OCI registry. E.g.:
```
# render manifests
helm template oci://registry-1.docker.io/dvob/myapp
# show values
helm template oci://registry-1.docker.io/dvob/myapp
# install/upgrade
helm upgrade --install --create-namespace --namespace myapp myapp oci://registry-1.docker.io/dvob/myapp
```
When specifying the chart location you can also use a version or digest:
```
helm template oci://registry-1.docker.io/dvob/myapp:0.0.1
helm template oci://registry-1.docker.io/dvob/myapp@sha256:b46cedeb2b1cc3549b0cfcc02a3896cfc294522214473b2333759e9644452d84
```