Sim Helm charts

Chart repository for Sim — the open-source AI workspace where teams build, deploy, and manage AI agents.

OCI registry

The recommended path. Signed with Sigstore and carrying build provenance. Requires Helm 3.8 or newer.

helm install sim oci://ghcr.io/simstudioai/charts/sim \
  --version <version> --namespace sim --create-namespace

Helm repository

The same chart, for clusters and tooling that expect helm repo add.

helm repo add sim https://charts.sim.ai
helm repo update
helm install sim sim/sim --version <version> --namespace sim --create-namespace

Always pass --version. Without it Helm resolves the newest published chart at install time, so the same command produces different deployments on different days. List what is available with helm search repo sim/sim --versions.

Documentation