https://github.com/tamcore/charts
https://github.com/tamcore/charts
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tamcore/charts
- Owner: tamcore
- Created: 2022-08-30T12:01:06.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2026-05-16T12:37:28.000Z (about 1 month ago)
- Last Synced: 2026-05-16T14:41:27.502Z (about 1 month ago)
- Language: Mustache
- Size: 382 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Helm Charts
## Usage
### Helm repo
```shell
helm repo add tamcore https://tamcore.github.io/charts/
helm repo update
```
### OCI registry
```shell
# fetch chart versions
skopeo list-tags docker://ghcr.io/tamcore/charts/${CHART_NAME}
# or
crane ls ghcr.io/tamcore/charts/${CHART_NAME}
# deploy
helm upgrade --install \
${CHART_NAME} \
oci://ghcr.io/tamcore/charts/${CHART_NAME} \
--version ${CHART_VERSION} \
--namespace ${NAMESPACE}
```