k3s/docs/getting-started-guides/aws/kubecfg.md

29 lines
416 B
Markdown
Raw Normal View History

2014-11-06 11:06:30 +00:00
# Install and configure kubecfg
2014-12-04 18:59:55 +00:00
## Download the kubecfg CLI tool
2014-11-06 11:06:30 +00:00
### Darwin
```
wget http://storage.googleapis.com/k8s/darwin/kubecfg
```
### Linux
```
wget http://storage.googleapis.com/k8s/linux/kubecfg
2014-11-06 11:06:30 +00:00
```
### 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>
```