Skip to content

Commit

Permalink
Use kubectl in getting started guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Jeffrey committed Dec 4, 2014
1 parent 4656ed8 commit b1df1c3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/getting-started-guides/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ You can create a pod like this:

```
cd kubernetes
cluster/kubecfg.sh -c api/examples/pod.json create /pods
cluster/kubectl.sh create -f api/examples/pod.json
```

Where pod.json contains something like:
Expand Down Expand Up @@ -101,19 +101,18 @@ Where pod.json contains something like:
You can see your cluster's pods:

```
cluster/kubecfg.sh list pods
cluster/kubectl.sh get pods
```

and delete the pod you just created:

```
cluster/kubecfg.sh delete pods/php
cluster/kubectl.sh delete pods php
```

Look in `api/examples/` for more examples

### Tearing down the cluster
```
cd kubernetes
cluster/kube-down.sh
```

0 comments on commit b1df1c3

Please sign in to comment.