You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+14-19
Original file line number
Diff line number
Diff line change
@@ -29,28 +29,25 @@ This section documents simple procedures for installing the Deis Router for eval
29
29
30
30
Deis Router can be installed with or without the rest of the Deis Workflow platform. In either case, begin with a healthy Kubernetes cluster. Kubernetes getting started documentation is available [here](http://kubernetes.io/gettingstarted/).
31
31
32
-
Next, install the [Helm Classic](http://helm.sh) package manager, then use the commands below to initialize that tool and load the [deis/charts](https://github.com/deis/charts) repository.
32
+
Next, install the [Helm](http://helm.sh) package manager, then use the commands below to initialize that tool and install all of Deis Workflow or the Deis Router by itself.
33
33
34
34
```
35
-
$ helmc update
36
-
$ helmc repo add deis https://github.com/deis/charts
For next steps, skip ahead to the [How it Works](#how-it-works) and [Configuration Guide](#configuration) sections.
56
53
@@ -98,15 +95,13 @@ $ make build
98
95
99
96
Make sure to have defined the variable `DEIS_REGISTRY` previous to this step, as your image tags will be prefixed according to this.
100
97
101
-
Built images will be tagged with the sha of the latest git commit. __This means that for a new image to have its own unique tag, experimental changes should be committed _before_ building. Do this in a branch. Commits can be squashed later when you are done hacking.__
102
-
103
98
#### To deploy:
104
99
105
100
```
106
101
$ make deploy
107
102
```
108
103
109
-
The deploy target will implicitly build first, then push the built image (which has its own unique tags) to your development registry (i.e. that specified by `DEIS_REGISTRY`). A Kubernetes manifest is prepared, referencing the uniquely tagged image, and that manifest is submitted to your Kubernetes cluster. If a router component is already running in your Kubernetes cluster, it will be deleted and replaced with your build.
104
+
The deploy target will implicitly build first, then push the built image to your development registry (i.e. that specified by `DEIS_REGISTRY`). The router's _existing_Kubernetes `Deployment` (installed via Helm) will be updated to use the newly built image.
110
105
111
106
To see that the router is running, you can look for its pod(s):
112
107
@@ -119,7 +114,7 @@ $ kubectl get pods --namespace=deis
0 commit comments