Upgrade a Worker on Standalone Compute

You can upgrade an existing Availability On-premise Vantage Point Worker, also known as Worker, on standalone compute by updating the configuration of the Docker file.

Here are the steps to be performed to upgrade the Worker on standalone compute:

Upgrade Docker or Colima Container

  1. Download the latest Worker image tar file. For instructions, see Download a Worker.
  2. Update existing docker.sh file with new image name.
  3. Create new container with new container name. For instructions, see Deploy a Worker on a Standalone Compute.
  4. Delete existing Docker or Colima container.
    To list the running containers, run the following:
    docker ps
    From above output, obtain the required container id of the running docker container and execute the following to delete container:
    docker rm -f <container_id>

Upgrade Podman Container

  1. Download the latest Worker image tar file. For instructions, see Download a Worker.
  2. Update existing docker.sh file with new image name.
  3. Create new container with new container name. For instructions, see Deploy a Worker on a Standalone Compute.
  4. Delete existing Podman container.
    To list the running containers, run the following:
    podman ps
    From above output, obtain the required container id of the running podman container and execute the following to delete container:
    podman rm -f <container_id>