Skip to main content
Version: 10.2.8

Upgrade from 10.2.8 to 10.2.8.2

The guide describes upgrading from v10.2.8 to v10.2.8.2 of the Work.AI platform.

Prerequisites

  • You have Work.AI up and running.
  • All Business Processes are stopped.
info

Remember to run the commands as APPLICATION_USER.

Upgrade

To apply the patch, do the following:

  1. On the Master1 server, download the patch package and extract it into the directory with the existing installer. Make sure to follow the same directory structure as in the example below when downloading and extracting the patch package:

    cd /opt/workfusion/wf_installer/
    mkdir -pv ./patches
    cd ./patches/

    curl -k -o 'patch_10.2.8.2.tar.gz' 'https://DOWNLOAD_LINK'

    tar xzf patch_10.2.8.2.tar.gz

    A new directory named patch_10.2.8.2 with the patch content appears.

  2. Navigate to the directory with the patch content and run the command to apply it as in the example below:

    export ANSIBLE_PRIVATE_KEY_FILE="/PATH/TO/SSH-PRIVATE-KEY" && export ANSIBLE_VAULT_PASS='YOUR_ANSIBLE_VAULT_PASS'
    cd ./patch_10.2.8.2
    ./patch_10.2.8.2.sh apply

    Wait for 10 minutes till the patch is successfully applied.

Upgrade in case of multi-point setup

If you apply the patch in an environment provisioned in the multi-point way, upload the patch package to all Master servers (in the case of the HA mode, there are three Master servers) and define additional arguments for the multi-point setup as in the example:

./patch_10.2.8.2.sh apply -c local --limit master[0]  # When applying for the Master1 server in the multi-point way
./patch_10.2.8.2.sh apply -c local --limit master[1] # When applying for the Master2 server in the multi-point way (in the case of the HA mode)
./patch_10.2.8.2.sh apply -c local --limit master[2] # When applying for the Master3 server in the multi-point way (in the case of the HA mode)

The patch affects Master servers only, so you are not required to apply it on Agent(s) or any other servers.