add: oci chart usage instructions

This commit is contained in:
Dev Jadeja
2024-12-24 13:46:21 +05:30
parent 639ba2d64c
commit 04ec234f70

View File

@ -2,3 +2,17 @@
You can find charts in charts folder and oci images for every chart in github packages. You can find charts in charts folder and oci images for every chart in github packages.
## How to use (example)
#### yaml rendering
```bash
helm template oci://ghcr.io/intreecom/charts/py-app --version 0.1.0
```
#### show chart values
```bash
helm show values oci://ghcr.io/intreecom/charts/py-app --version 0.1.0
```
#### install chart
```bash
helm install py-app oci://ghcr.io/intreecom/charts/py-app --version 0.1.0
```