Skip to content

Helm Releases

Helm is the package manager for Kubernetes. These are the Helm releases currently installed on the cluster.

Installed releases

ReleaseNamespaceChartApp VersionInstalled
traefikkube-systemtraefik-37.1.1v3.5.12025-12-25
traefik-crdkube-systemtraefik-crd-37.1.1v3.5.12025-12-25
cert-managercert-managercert-manager-v1.19.2v1.19.22025-12-31
ranchercattle-systemrancher-2.13.1v2.13.12025-12-31
rancher-webhookcattle-systemrancher-webhook-108.0.10.9.12025-12-31
fleetcattle-fleet-systemfleet-108.0.10.14.12025-12-31
fleet-crdcattle-fleet-systemfleet-crd-108.0.10.14.12025-12-31
fleet-agent-localcattle-fleet-local-systemfleet-agent-local2025-12-31
rancher-turtlescattle-turtles-systemrancher-turtles-108.0.10.25.12025-12-31
system-upgrade-controllercattle-systemsystem-upgrade-controller-108.0.0v0.17.02025-12-31

JupyterHub is also installed via Helm but may not appear in helm list if it was installed with a different kubeconfig context.

Useful Helm commands

bash
# List all releases across all namespaces
helm list -A

# View details of a specific release
helm status <release-name> -n <namespace>

# View the values used for a release
helm get values <release-name> -n <namespace>

# View all values (including defaults)
helm get values <release-name> -n <namespace> --all

# View release history
helm history <release-name> -n <namespace>

# Upgrade a release
helm upgrade <release-name> <chart> -n <namespace> -f values.yaml

# Rollback to a previous revision
helm rollback <release-name> <revision> -n <namespace>

Helm repositories

bash
# List configured repos
helm repo list

# Update repos
helm repo update

# Search for charts
helm search repo <keyword>

Currently configured repositories:

RepositoryURL
jetstackhttps://charts.jetstack.io
rancher-stablehttps://releases.rancher.com/server-charts/stable
jupyterhubhttps://jupyterhub.github.io/helm-chart/

Notes

  • Traefik and its CRDs are managed by K3s through auto-deploy manifests, not through manual Helm commands. Upgrading Traefik should be done by updating K3s, not by running helm upgrade directly.
  • Rancher manages several sub-charts (fleet, webhook, turtles, system-upgrade-controller). These are installed and upgraded by Rancher automatically. Do not modify them independently.

Built by students, for students.