Public repository for Osmosis blockchain infrastructure Helm charts.
| Chart | Description | Version | App Version |
|---|---|---|---|
| osmosis-fullnode | Osmosis blockchain fullnode with monitoring | 0.1.0 |
29.0.2 |
helm repo add osmosis-charts [repo_url]
helm repo update
# Install osmosis-fullnode
helm install my-osmosis-node osmosis-charts/osmosis-fullnode
# Install with custom values
helm install my-osmosis-node osmosis-charts/osmosis-fullnode -f values.yaml
# Install specific version
helm install my-osmosis-node osmosis-charts/osmosis-fullnode --version 0.1.0
mkdir -p charts/my-new-chart
helm create charts/my-new-chart
Follow the Chart Guidelines
# Lint
helm lint charts/my-new-chart/
# Template
helm template charts/my-new-chart/
# Install locally
helm install test-release charts/my-new-chart/ --dry-run
# Lint all charts
./scripts/lint-charts.sh
# Test all charts
./scripts/test-charts.sh
Charts are automatically released when you push a tag:
# Release osmosis-fullnode v1.0.0
git tag chart-osmosis-fullnode-v1.0.0
git push origin chart-osmosis-fullnode-v1.0.0
Use the GitHub Actions workflow dispatch to test releases:
osmosis-fullnode1.0.0-testtrue (for testing)osmosis-{component} (e.g., osmosis-fullnode, osmosis-sqs)1.0.0)29.0.2)Chart.yamlgit checkout -b feature/new-chart)helm linthelm template