Upgrading Kuber

Upgrading Kuber is a painless process and should take less than a minute to complete.

Kuber Version Requirements

Each version of Kubectyl Panel also has a corresponding minimum version of Kuber that is required for it to run. Please see the chart below for how these versions line up. In most cases your base Kuber version should match that of your Panel.

Download Updated Binary

First, download the updated kuber binary into /usr/local/bin. You will need to stop Kuber briefly. Your running servers will not be affected.

systemctl stop kuber
curl -L -o /usr/local/bin/kuber "https://github.com/kubectyl/kuber/releases/latest/download/kuber_linux_$([[ "$(uname -m)" == "x86_64" ]] && echo "amd64" || echo "arm64")"
chmod u+x /usr/local/bin/kuber

Restart Process

Finally, restart the kuber process. Your running servers will not be affected and any open connections to the instance will re-connect automatically.

systemctl restart kuber

Last updated