fix ip address command

This commit is contained in:
James Hackett 2023-03-18 14:13:40 +00:00
parent 092d0d8414
commit 96528a57bd
No known key found for this signature in database
GPG key ID: 8DC0850668B1568B

View file

@ -68,7 +68,7 @@ the address of a VM by checking the nomad alloc logs for that VM and searching f
```bash
$ nomad job status distro-vm | grep "Node ID" -A 1 | tail -n 1 | cut -d " " -f 1
# <alloc-id>
$ nomad alloc logs <alloc-id> | grep -E "ens3.*global"
$ nomad alloc logs <alloc-id> | grep -E "ens3.*global" | cut -d "|" -f 4 | xargs
# cloud init... ens3: <ip-address> global
```