Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Added Pachyderm chart #3114

Merged
merged 5 commits into from
Jan 4, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added namespace flag to deployment commands
  • Loading branch information
jonandernovella committed Jan 4, 2018
commit 544ca86b50ae2ee5dff24c6f528a742403e38d0e
6 changes: 3 additions & 3 deletions stable/pachyderm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,22 +102,22 @@ How to install the chart
We strongly suggest that the installation of Pachyderm should be performed in its own namespace. The default installation will deploy Pachyderm on your local Kubernetes cluster:

```console
$ helm install --name my-release stable/pachyderm
$ helm install --namespace pachyderm --name my-release stable/pachyderm
```

You should install the chart specifying each parameter using the `--set key=value[,key=value]` argument to helm install. Please consult the `values.yaml` file for more information regarding the parameters. For example:


```console
$ helm install --name my-release \
$ helm install --namespace pachyderm --name my-release \
--set credentials=s3,s3.accessKey=myaccesskey,s3.secretKey=mysecretkey,s3.bucketName=default_bucket,s3.endpoint=domain.subdomain:8080,etcd.persistence.enabled=true,etcd.persistence.accessMode=ReadWriteMany,"signature=\"1\"","secure=\"1\"" \
stable/pachyderm
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart:

```console
$ helm install --name my-release -f values.yaml stable/pachyderm
$ helm install --namespace pachyderm --name my-release -f values.yaml stable/pachyderm
```

Accessing the pachd service
Expand Down