Skip to content

Using the Basebox OCI Helm Registry

Install from OCI Registry

Since the Basebox Helm charts are hosted in an OCI registry, you don't need to add a repository. Instead, you reference charts directly using the OCI URL.

List Available Charts

# Show all versions of a specific chart
helm show chart oci://hub.basebox.ai/helm/basebox.ai --version <version>

# Get chart information
helm show all oci://hub.basebox.ai/helm/basebox.ai --version <version>

Install from OCI Registry

# Install the umbrella chart (latest version)
helm upgrade --install basebox oci://hub.basebox.ai/helm/basebox.ai \
  --values values-production.yaml \
  --namespace basebox \
  --create-namespace

# Install specific version
helm upgrade --install basebox oci://hub.basebox.ai/helm/basebox.ai \
  --version 1.2.3 \
  --values values-production.yaml \
  --namespace basebox \
  --create-namespace

Install Individual Services

# Install only AISRV
helm upgrade --install aisrv oci://hub.basebox.ai/helm/aisrv \
  --values aisrv-values.yaml \
  --namespace basebox

# Install only the frontend
helm upgrade --install frontend oci://hub.basebox.ai/helm/frontend \
  --values frontend-values.yaml \
  --namespace basebox

Update Charts

# Upgrade to latest version
helm upgrade --install basebox oci://hub.basebox.ai/helm/basebox.ai \
  --values values-production.yaml \
  --namespace basebox

# Upgrade to specific version
helm upgrade --install basebox oci://hub.basebox.ai/helm/basebox.ai \
  --version 1.2.3 \
  --values values-production.yaml \
  --namespace basebox

Pull and Inspect Charts Locally

# Pull a chart to local directory
helm pull oci://hub.basebox.ai/helm/basebox.ai

# Pull and extract
helm pull oci://hub.basebox.ai/helm/basebox.ai --untar

# Template the chart locally (without installing)
helm template basebox oci://hub.basebox.ai/helm/basebox.ai \
  --values values-production.yaml