kubernetes/docs/getting-started-guides/aws/kubecfg.md
Junseong Lee ac40cb6d74 Fix download link in aws/kubecfg documentation
Kubecfg's download link on Darwin and Linux are points to http://storage.googleapis.com/k8s/darwin/kubecfg .
Later one should be changed to http://storage.googleapis.com/k8s/linux/kubecfg .
2014-11-17 22:01:18 +09:00

29 lines
416 B
Markdown

# Install and configure kubecfg
## Downlaod the kubecfg cli tool
### Darwin
```
wget http://storage.googleapis.com/k8s/darwin/kubecfg
```
### Linux
```
wget http://storage.googleapis.com/k8s/linux/kubecfg
```
### Copy kubecfg to your path
```
chmod +x kubecfg
mv kubecfg /usr/local/bin/
```
### Create a secure tunnel for API communication
```
ssh -f -nNT -L 8080:127.0.0.1:8080 core@<master-public-ip>
```