Skip to content

Commit

Permalink
small docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pnowaczyk committed Oct 28, 2014
1 parent 1c61486 commit a156691
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/devel/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ Before committing any changes, please link/copy these hooks into your .git
directory. This will keep you from accidentally committing non-gofmt'd go code.

```
cd kubernetes
ln -s hooks/prepare-commit-msg .git/hooks/prepare-commit-msg
ln -s hooks/commit-msg .git/hooks/commit-msg
cd kubernetes/.git/hooks/
ln -s ../../hooks/prepare-commit-msg .
ln -s ../../hooks/commit-msg .
```

## Unit tests
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started-guides/vagrant.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ ID Image(s) Selector Replicas
Start a container running nginx with a replication controller and three replicas:

```
$cluster/kubecfg.sh -p 8080:80 run dockerfile/nginx 3 myNginx
$ cluster/kubecfg.sh -p 8080:80 run dockerfile/nginx 3 myNginx
```

When listing the pods, you will see that three containers have been started and are in Waiting state:
Expand Down Expand Up @@ -226,7 +226,7 @@ myNginx dockerfile/nginx replicationController=myNginx 3
```

We did not start any services, hence there is none listed. But we see three replicas displayed properly.
Check the [guestbook](examples/guestbook/README.md) application to learn how to create a service.
Check the [guestbook](../../examples/guestbook/README.md) application to learn how to create a service.
You can already play with resizing the replicas with:

```
Expand Down

0 comments on commit a156691

Please sign in to comment.