Skip to content

Commit

Permalink
Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
madhusudancs committed Aug 29, 2016
1 parent a6ff236 commit a39f8ed
Showing 1 changed file with 25 additions and 6 deletions.
31 changes: 25 additions & 6 deletions federation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,42 @@ as explained in that guide, you also need to install [`jq`](https://stedolan.git
which this workflow depends, so we are giving an exception to jq
for now. -->

Building cluster federation should be as simple as running:
Building cluster federation artifacts should be as simple as running:

```shell
make build do=gen
make build
```

To deploy clusters and install federation components, edit the
`config.default.json` file to describe your clusters and run
You can specify the docker registry to tag the image using the
KUBE_REGISTRY environment variable. Please make sure that you use
the same value in all the subsequent commands.

To push the built docker images to the registry, run:

```shell
make push
```

To initialize the deployment run:

(This pull the installer images)

```shell
make init
```

To deploy the clusters and install the federation components, edit the
`${KUBE_ROOT}/_output/federation/config.json` file to describe your
clusters and run:

```shell
make build do=deploy
make deploy
```

To turn down the federation components and tear down the clusters run:

```shell
make build do=destroy
make destroy
```

# Ideas for improvement
Expand Down

0 comments on commit a39f8ed

Please sign in to comment.