Skip to content

Commit

Permalink
Add kn client
Browse files Browse the repository at this point in the history
  • Loading branch information
ruzickap committed Oct 8, 2019
1 parent cbe263a commit 68a43c5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/part-01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,20 @@ Install [kops](https://github.com/kubernetes/kops):

```bash
if [ ! -x /usr/local/bin/kops ]; then
sudo curl -s -L "https://github.com/kubernetes/kops/releases/download/1.14.0-alpha.3/kops-linux-amd64" > /usr/local/bin/kops
sudo curl -s -L "https://github.com/kubernetes/kops/releases/download/1.14.0-alpha.3/kops-linux-amd64" -o /usr/local/bin/kops
sudo chmod a+x /usr/local/bin/kops
fi
```

Install `kn` client for Knative:

```bash
if [ ! -x /usr/local/bin/kn ]; then
sudo curl -s -L "https://github.com/knative/client/releases/download/v0.2.0/kn-linux-amd64" -o /usr/local/bin/kn
sudo chmod a+x /usr/local/bin/kn
fi
```

## Configure AWS

Authorize to AWS using AWS CLI: [https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html)
Expand Down

0 comments on commit 68a43c5

Please sign in to comment.