Update Veriscope

The update-veriscope.yaml playbook copies the version of the code on the controller machine onto the target Veriscope Server(s). It expects a value for the variable apps_to_update which is a list of veriscope components to update / reinstall, either api and/or dashboard (i.e. the web-application).

The below example commands pass in the extra vars inline, instead of updating the vars section in veriscope-nodes.yaml file.

ansible-playbook -i infra/configure/inventory/veriscope-nodes.yaml --extra-vars apps_to_update="['api', 'dashboard']" infra/configure/playbooks/update-veriscope.yaml

OR

ansible-playbook -i infra/configure/inventory/veriscope-nodes.yaml --extra-vars apps_to_update="['dashboard']" infra/configure/playbooks/update-veriscope.yaml

OR

ansible-playbook -i infra/configure/inventory/veriscope-nodes.yaml --extra-vars apps_to_update="['api']" infra/configure/playbooks/update-veriscope.yaml