Upgrading on Kubernetes

Always match the agent version to the Portainer Server version. In other words, when you're installing or upgrading to Portainer 2.13.1 make sure all of the agents are also on version 2.13.1.

Starting from Portainer CE 2.9 and BE 2.10, HTTPS is enabled by default on port 9443. These instructions will configure Portainer to use both 9443 for HTTPS and 9000 for HTTP. You can choose to completely disable HTTP after the upgrade.

Before you make Portainer HTTPS only, make sure you have all your Agents and Edge Agents already communicating with Portainer using HTTPS.

Before beginning any upgrade, we highly recommend taking a backup of your current Portainer configuration.

Select the Portainer upgrade method which matches the original installation method used.

Method 1: Upgrading using Helm

Add the Portainer Helm repository by running the following commands. Ignore any warnings about the repo already being there:

helm repo add portainer https://portainer.github.io/k8s/
helm repo update

Next, run the following command to upgrade to the latest version of Portainer:

helm upgrade -n portainer portainer portainer/portainer

Method 2: Upgrading using YAML Manifest

Option 1: Via the Portainer UI

The easiest way to upgrade is to use the Portainer UI along with our manifest files. Copy the contents of the manifest file that matches the method you used to deploy Portainer:

Copy the contents of the relevant NodePort manifest file:

Business Edition:

https://downloads.portainer.io/ee2-13/portainer.yaml

Community Edition:

https://downloads.portainer.io/ce2-13/portainer.yaml

For an agent-only deployment, use one of the following manifests instead:

Business Edition:

https://downloads.portainer.io/ee2-13/portainer-agent-k8s-nodeport.yaml

Community Edition:

https://downloads.portainer.io/ce2-13/portainer-agent-k8s-nodeport.yaml

If you have set a custom AGENT_SECRET on your Portainer Server instance you must remember to explicitly provide this in the YAML when updating your agent:

environment:

- AGENT_SECRET: yoursecret

Log into Portainer and connect to the Kubernetes environment where Portainer is installed. From the menu select Applications then select Advanced Deployment. Select the portainer namespace then select Web Editor:

Paste the contents of the YAML file then click Deploy. Portainer will process the manifest and should return you to the login page once the upgrade is complete.

Option 2: Via the command line

If you prefer to use the command line to upgrade, you can do so using kubectl commands:

Log into the control node of your Kubernetes cluster and run one of the following commands:

Business Edition:

kubectl apply -n portainer -f https://downloads.portainer.io/ee2-13/portainer.yaml

Community Edition:

kubectl apply -n portainer -f https://downloads.portainer.io/ce2-13/portainer.yaml

For an agent-only deployment, use one of the following commands instead:

Business Edition:

kubectl apply -n portainer -f https://downloads.portainer.io/ee2-13/portainer-agent-k8s-nodeport.yaml

Community Edition:

kubectl apply -n portainer -f https://downloads.portainer.io/ce2-13/portainer-agent-k8s-nodeport.yaml

If you have set a custom AGENT_SECRET on your Portainer Server instance you must remember to explicitly provide this in the YAML when updating your agent:

environment:

- AGENT_SECRET: yoursecret

When the deployment is finished you will be able to log into Portainer. You should notice the new version number at the bottom-left of the Portainer UI.

Method 3: Force an update

If Portainer does not update after running the above commands, you can force a download of the latest image by running the following command:

kubectl -n portainer rollout restart deployment.apps/portainer

Or, for an agent-only deployment, use this command instead:

kubectl -n portainer rollout restart deployment.apps/portainer-agent

Last updated