Update

How to update Auditor

To update the Auditor to the latest version, follow these steps:

Using the containers:

Update using GitLab CI (Ansible playbook)

For the update it is enough to run pipeline and the script will autonomously update Auditor to the latest version

Manual update

  1. Stop the application:

docker-compose down -v

This will stop all services and remove the associated volumes, which will clean up the environment.

  1. Pull the latest changes from the repository:

git pull

This ensures that you have the most up-to-date codebase to work with.

  1. Restart the application:

docker-compose up -d

Update in Kubernetes environment:

  1. To update, run the following command:

helm upgrade auditor <path-to-helm-directory>

replace with the path to the directory that contains the Helm Chart for your application.

Last updated