-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from pngmbh/fix-helm-chart
fix(charts): fix in-cluster test setup via helm chart
- Loading branch information
Showing
2 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,7 @@ Setting the `GINKGO_NODES` environment variable to a value of `1` will allow ser | |
If you have Go 1.5 or greater already installed and working properly and also have the [Glide](https://github.com/Masterminds/glide) dependency management tool for Go installed, you may clone this repository into your `$GOPATH`: | ||
|
||
```console | ||
git clone [email protected]:deis/workflow-e2e.git $GOPATH/src/github.com/deis/workflow-e2e | ||
git clone [email protected]:teamhephy/workflow-e2e.git $GOPATH/src/github.com/deis/workflow-e2e | ||
``` | ||
|
||
One-time execution of the following will resolve the test suite's own dependencies: | ||
|
@@ -101,7 +101,7 @@ If you do not have Go 1.5 or greater installed locally, but do have a Docker dae | |
In this case, you may clone this repository into a path of your own choosing (does not need to be on your `$GOPATH`): | ||
|
||
```console | ||
git clone [email protected]:deis/workflow-e2e.git /path/of/your/choice | ||
git clone [email protected]:teamhephy/workflow-e2e.git /path/of/your/choice | ||
``` | ||
|
||
Then build the test image and execute the test suite: | ||
|
@@ -117,8 +117,9 @@ A third option is to run the test suite from within the very cluster that is und | |
To install the [helm](https://github.com/kubernetes/helm) chart and start the tests, assuming helm and its corresponding server component tiller are [installed](https://github.com/kubernetes/helm/blob/master/docs/install.md): | ||
|
||
```console | ||
helm repo add workflow-e2e https://charts.deis.com/workflow-e2e | ||
helm install --verify workflow-e2e/workflow-e2e --namespace deis | ||
git clone git clone [email protected]:teamhephy/workflow-e2e.git; cd workflow-e2e | ||
helm dependency update charts/workflow-e2e | ||
helm upgrade --install workflow-e2e charts/workflow-e2e --namespace deis | ||
``` | ||
|
||
To monitor tests as they execute: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters