Complimentary Gartner® Report! 'A CTO's Guide to Open-Source Software: Answering the Top 10 FAQs.'Read more

Upgrade, Downgrade or Uninstall BindPlane OP Server

note

We recommend backing up your environment prior to an upgrade. See our Backup and Disaster Recovery Guide

Upgrading BindPlane OP Server

Upgrading the BindPlane Server is as simple as re-running the install script without the --init flag. A convenient piped one liner is below.

bash
1curl -fsSlL https://storage.googleapis.com/bindplane-op-releases/bindplane/latest/install-linux.sh | bash -s --

Additionally, if you want to upgrade to a specific version, you can do it using the below command. Replace 1.72.1 with the specific version you want.

bash
1curl -fsSlL https://storage.googleapis.com/bindplane-op-releases/bindplane/latest/install-linux.sh | bash -s -- --version 1.72.1

Downgrading BindPlane OP Server

warning

Downgrading is generally not recommended.

If you need to downgrade, please contact the observIQ suppport team.

Uninstall BindPlane OP Server

  1. Stop the process:
bash
1sudo systemctl disable bindplane && sudo systemctl stop bindplane
  1. Remove the package
  • Debian and Ubuntu:
bash
1sudo apt-get remove bindplane-ee -y && sudo apt-get purge bindplane-ee -y
  • CentOS and RHEL 8 and newer (use yum for anything older)
bash
1sudo dnf remove bindplane-ee -y
  1. Optionally remove leftover data
bash
1sudo rm -rf /etc/bindplane /var/lib/bindplane /var/log/bindplane

Docker & Kubernetes

To upgrade on container platforms, simply change the version numbers in your docker-compose.yaml or values.yaml, as appropriate, and reapply.