fix ip address command

这个提交包含在:
James Hackett 2023-03-18 14:13:40 +00:00
父节点 092d0d8414
当前提交 96528a57bd
找不到此签名对应的密钥
GPG 密钥 ID: 8DC0850668B1568B

查看文件

@ -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
```