You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Follow these steps to create and use two Vagrant VMs: `agent` and `dispatcher`.
4
+
5
+
### 1) Install prerequisites
6
+
-**Vagrant (AMD64)**: Download and install the Windows AMD64 package from the official site: [Vagrant Install](https://developer.hashicorp.com/vagrant/install)
7
+
-**VirtualBox**: Download and install VirtualBox for Windows: [VirtualBox Downloads](https://www.virtualbox.org/wiki/Downloads)
8
+
9
+
After installing both, **restart your machine**.
10
+
11
+
### 2) Bring up the VMs
12
+
Run these commands from the repository root:
13
+
14
+
```bash
15
+
cd lab
16
+
vagrant up
17
+
```
18
+
19
+
The first run may take several minutes while the base box downloads.
20
+
21
+
### 3) Connect to the VMs
22
+
-**Dispatcher**:
23
+
24
+
```bash
25
+
vagrant ssh dispatcher
26
+
```
27
+
28
+
-**Agent**:
29
+
30
+
```bash
31
+
vagrant ssh agent
32
+
```
33
+
34
+
### Notes
35
+
- The default provider is VirtualBox; ensure virtualization is enabled in BIOS/UEFI.
36
+
- On Windows, run commands in PowerShell or Command Prompt.
0 commit comments