Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: describe instillation of required ansible collections #713

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions offline/single_hetzner_machine_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ Take a look at the "vars:" section in wire-server-deploy/ansible/hetzner-single-

The variable 'artifact_hash' above is the hash of your deployment artifact, given to you by Wire, or acquired by looking at the build job.

## Install ansible collections

Playbooks use the `community.libvirt` ansible collection. If you do not have it installed, it can be installed with the ansible-galaxy command.

```
ansible-galaxy collection install community.libvirt
```

## Run ansible playbook for server bootstrapping

Navigate to the ansible folder in wire-server-deploy and execute the playbook using valid vars as described above.
Expand Down
Loading