Skip to content

Commit

Permalink
git mv chart/ charts/
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Fisher committed Nov 15, 2017
1 parent db6d0f4 commit c94f82f
Show file tree
Hide file tree
Showing 26 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ docker-push: $(addsuffix -push,$(IMAGES))
.PRECIOUS: build-chart
.PHONY: build-chart
build-chart:
helm package -d docs/ ./chart/brigade
helm package -d docs/ ./chart/brigade-project
helm package -d docs/ ./charts/brigade
helm package -d docs/ ./charts/brigade-project
helm repo index docs/

# All non-functional tests
Expand All @@ -69,7 +69,7 @@ test-unit:
# project: "deis/empty-testbed"
# repository: "github.com/deis/empty-testbed"
# secret: "MySecret"
# - Run "helm install ./chart/brigade-project -f myvals.yaml
# - Run "helm install ./charts/brigade-project -f myvals.yaml
# - Run "make run" in one terminal
# - Run "make test-functional" in another terminal
#
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The easiest way to install Brigade into your Kubernetes cluster is to install it
```console
$ git clone https://github.com/Azure/brigade.git
$ cd brigade
$ helm install --name brigade ./chart/brigade
$ helm install --name brigade ./charts/brigade
```

You will now have Brigade installed.
Expand All @@ -49,9 +49,9 @@ To create new projects, use the `brigade-project` Helm chart. While inside the G
repository cloned above, run these commands:

```console
$ helm inspect values ./chart/brigade-project > myvalues.yaml
$ helm inspect values ./charts/brigade-project > myvalues.yaml
$ # edit myvalues.yaml
$ helm install --name my-project ./chart/brigade-project -f myvalues.yaml
$ helm install --name my-project ./charts/brigade-project -f myvalues.yaml
```

When editing `myvalues.yaml`, follow the instructions in that file for configuring
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions docs/topics/developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ Once you have Brigade running in Minikube or a comparable alternative, you shoul
able to run the functional tests.

First, create a project that points to the `deis/empty-testbed` project. The most
flexible way of doing this is via the `./chart/brigade-project` Helm chart:
flexible way of doing this is via the `./charts/brigade-project` Helm chart:

```console
$ helm inspect ./chart/brigade-project > functional-test-project.yaml
$ helm inspect ./charts/brigade-project > functional-test-project.yaml
$ # edit the functional-test-project.yaml file
$ helm install -f functional-test-project.yaml -n brigade-functional-tests ./chart/brigade-project
$ helm install -f functional-test-project.yaml -n brigade-functional-tests ./charts/brigade-project
```

At the very least, you will want a config that looks like this:
Expand Down
4 changes: 2 additions & 2 deletions docs/topics/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To install from the GitHub repository, follow these steps:
```console
$ git clone https://github.com/azure/brigade.git
$ cd brigade
$ helm install ./chart/brigade
$ helm install ./charts/brigade
```

### Option 2: Install from the Chart Repository
Expand All @@ -40,7 +40,7 @@ this behavior by supplying an alternative image during install:
$ helm install brigade/brigade --set image.name=my-image --set image.tag=1.2.3
```

There are a variety of other configuration options for Brigade. Run `helm fetch values ./chart/brigade`
There are a variety of other configuration options for Brigade. Run `helm fetch values ./charts/brigade`
to see them all.

### Enabling RBAC (optional)
Expand Down

0 comments on commit c94f82f

Please sign in to comment.