Update Airgapped Edition on Kubernetes
Since airgapped clusters can't pull updates from the internet, upgrading requires manually transferring Docker images to your private registry and updating the Helm chart.
Prerequisites
- A machine with internet access to download images and the Helm chart.
- Access to your airgapped Docker registry used by the cluster.
- Your current Helm
values.yamlfile backed up.
Update Plane
On a machine with internet access, pull the latest Plane images and push them to your air-gapped Docker registry. Follow the guide for cloning and pushing Plane Docker images.
Once complete, the latest Plane images are available in your internal registry.
Download the latest Plane Enterprise Helm chart. You can check the most recent version on Artifact Hub.
bash# Using wget wget https://github.com/makeplane/helm-charts/releases/download/plane-enterprise-<chart_version>/plane-enterprise-<chart_version>.tgz # Using curl curl -L -O https://github.com/makeplane/helm-charts/releases/download/plane-enterprise-<chart_version>/plane-enterprise-<chart_version>.tgzTransfer the
.tgzfile to a machine that can access the cluster.INFO
Replace <chart_version> with the latest Helm chart version (e.g., 2.2.4). You can check the most recent version on Artifact Hub.
Before replacing your existing
values.yaml, compare it with the new Helm chart's default values. Copy over any custom configuration from your oldvalues.yamlinto the new template. The new chart version may include additional or renamed fields, so always use the new default values as the base and bring your existing configuration into it.In your
values.yaml, updateplaneVersionto match the version of Plane images you pushed to the registry.yamlplaneVersion: <plane_version>INFO
Replace
<plane_version>with the version you're upgrading to (e.g., v2.5.2). Check the release notes for the latest available release version.Once the Helm chart and
values.yamlfile are updated, redeploy the Helm release in your Kubernetes cluster to complete the update.
Verify the upgrade by checking the version in your Plane application.

