Skip to content

Commit

Permalink
Update getting-started.md
Browse files Browse the repository at this point in the history
  • Loading branch information
marcel-dempers authored Apr 5, 2021
1 parent acf2195 commit ec38685
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions kubernetes/cloud/azure/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,26 @@ cp ~/.kube/config .

## Get kubectl

You have two options for installing `kubectl` <br/>

Option 1: Install using `az` CLI

```
az aks install-cli
```

Option 2: Download the binary using `curl` and place in usr bin

```
curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl
chmod +x ./kubectl
mv ./kubectl /usr/local/bin/kubectl
```

# Create example apps

```
cd ../..
kubectl create ns example-app
Expand Down

0 comments on commit ec38685

Please sign in to comment.