Describe retrieval of IP address

pull/2144/head
Franz Beltran 2017-10-25 22:43:50 +08:00 committed by dlorenc
parent 094e335083
commit 32b2ee4549
1 changed files with 6 additions and 1 deletions

View File

@ -11,4 +11,9 @@ curl -L -X PUT http://10.0.2.15:2379/v2/keys/message -d value="Hello"
```
## Accessing Host Resources From Inside A Pod
In order to access host resources from inside a pod, IP address `192.168.99.1` must be used.
In order to access host resources from inside a pod, run the following command to determine the host IP you can use:
```shell
ip addr
```
The IP address under `vboxnet1` is the IP that you need to access the host from within a pod.