The Obol Stack supports installing arbitrary Helm charts as managed applications. Each installation creates an isolated deployment with its own namespace, similar to network deployments.
Install an application
Install any Helm chart using one of the supported reference formats:
# Install from ArtifactHub (repo/chart format)obolappinstallbitnami/redis# Specific versionobolappinstallbitnami/[email protected]# Direct URL to chart archiveobolappinstallhttps://charts.bitnami.com/bitnami/redis-19.0.0.tgz# Custom name and deployment IDobolappinstallbitnami/postgresql--namemydb--idproduction
# Auto-selects if only one app is installed
obol app sync
# By type (auto-selects if only one postgresql deployment)
obol app sync postgresql
# By full identifier
obol app sync postgresql/eager-fox
obol kubectl get all -n postgresql-eager-fox
# Simple list
obol app list
# Detailed output
obol app list --verbose
$EDITOR ~/.config/obol/applications/postgresql/eager-fox/values.yaml
# Re-deploy with changes (auto-selects if only one app)
obol app sync
# Auto-selects if only one app is installed
obol app delete
# By type or full identifier
obol app delete postgresql
obol app delete postgresql/eager-fox
# Skip confirmation
obol app delete postgresql/eager-fox --force