From b8446eb57730ae8d36af613581d35988aa97cd70 Mon Sep 17 00:00:00 2001 From: Hannah Cooper Date: Tue, 17 Feb 2026 07:38:02 +0000 Subject: [PATCH] GITBOOK-47: Add --set tls.force=true for updating using helm --- start/upgrade/kubernetes.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/start/upgrade/kubernetes.md b/start/upgrade/kubernetes.md index 71eee602..25581eeb 100644 --- a/start/upgrade/kubernetes.md +++ b/start/upgrade/kubernetes.md @@ -24,6 +24,10 @@ Select the Portainer update method which matches the original installation metho ## Method 1: Updating using Helm +{% hint style="info" %} +This article assumes that you installed originally using our [install instructions](../install/server/kubernetes/baremetal.md#deploy-using-helm). +{% endhint %} + Add the Portainer Helm repository by running the following commands. Ignore any warnings about the repo already being there: ``` @@ -37,14 +41,14 @@ Next, run one of the following commands to update Portainer: {% tab title="Business Edition" %} ``` helm upgrade -n portainer portainer portainer/portainer \ - --set enterpriseEdition.image.tag=sts --set enterpriseEdition.enabled=true + --set tls.force=true --set enterpriseEdition.image.tag=sts --set enterpriseEdition.enabled=true ``` {% endtab %} {% tab title="Community Edition" %} ``` helm upgrade -n portainer portainer portainer/portainer \ - --set image.tag=sts + --set tls.force=true --set image.tag=sts ``` {% endtab %} {% endtabs %}