Files
kubernetes-the-hard-way/docs
Andy Clemenko c9774d0488 Bad "value" for KUBERNETES_PUBLIC_ADDRESS setting.
Replace :
```
KUBERNETES_PUBLIC_ADDRESS=$(gcloud compute addresses describe kubernetes-the-hard-way \
  --region $(gcloud config get-value compute/region) \
  --format 'value(name)') 
```
with 
```
KUBERNETES_PUBLIC_ADDRESS=$(gcloud compute addresses describe kubernetes-the-hard-way \
  --region $(gcloud config get-value compute/region) \
  --format 'value(address)')
```
The reason is that when I ran the snippet it was not returning the IP address, rather `kubernetes-the-hard-way`.
2018-02-07 14:10:11 -05:00
..
2017-12-18 06:53:32 -08:00
2017-12-18 06:53:32 -08:00
2017-08-31 07:17:23 -07:00
2017-08-31 07:17:23 -07:00
2017-12-18 06:53:32 -08:00
2018-01-30 05:45:35 -08:00