ansible: Add support for common configuration on Windows hosts
[lttng-ci.git] / automation / ansible / README.md
1 # Required collections
2
3 ```
4 ansible-galaxy collection install community.general
5 ```
6
7 # Privileged data
8
9 Privileged data is stored in Bitwarden. To use roles that fetch privileged data,
10 the following utilities must be available:
11
12 * [bw](https://bitwarden.com/help/cli/)
13
14 Once installed, login and unlock the vault:
15
16 ```
17 bw login # or, `bw unlock`
18 export BW_SESSION=xxxx
19 bw sync -f
20 ```
21
22 # Running playbooks
23
24 ```
25 ansible-playbook -i hosts [-l SUBSET] site.yaml
26 ```
27
28 # Bootstrapping hosts
29
30 ## Windows
31
32 1. Configure either SSH or WinRM connection: see https://docs.ansible.com/ansible/latest/os_guide/windows_setup.html
33 2. For arm64 hosts:
34 * Install the necessary optional features (eg. OpenSSH, Hyper-V) since Windows RSAT isn't available on Arm64 yet
This page took 0.030761 seconds and 5 git commands to generate.