fix ip address command
This commit is contained in:
parent
092d0d8414
commit
96528a57bd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue