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

Commit

Permalink
Update pachyderm (#11457)
Browse files Browse the repository at this point in the history
* Pachyderm: Added sample command for specifying the specific version

Signed-off-by: Laurent Goderre <laurent.goderre@gmail.com>

* Pachyderm: Updated the images version

Signed-off-by: Laurent Goderre <laurent.goderre@gmail.com>

* Pachyderm: Updated RoleBinding to ClusterRoleBinding

Signed-off-by: Laurent Goderre <laurent.goderre@gmail.com>
  • Loading branch information
LaurentGoderre authored and k8s-ci-robot committed Mar 28, 2019
1 parent bfea6d7 commit 7a6e3f8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
4 changes: 2 additions & 2 deletions stable/pachyderm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ keywords:
- reproducibility
- distributed
- processing
version: 0.1.8
appVersion: 1.7.3
version: 0.1.9
appVersion: 1.7.11
home: "https://pachyderm.io"
sources:
- "https://github.com/pachyderm/pachyderm"
Expand Down
13 changes: 12 additions & 1 deletion stable/pachyderm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,24 @@ Alternatively, a YAML file that specifies the values for the parameters can be p
$ helm install --namespace pachyderm --name my-release -f values.yaml stable/pachyderm
```

Specifying a pachyderm version
------------------------

To specify a pachyderm version run the following command:

```console
$ helm install --namespace pachyderm --name my-release \
-set pachd.image.tag=1.7.11,pachd.worker.tag=1.7.11 \
stable/pachyderm
```

Accessing the pachd service
---------------------------

In order to use Pachyderm, please login through ssh to the master node and install the Pachyderm client:

```console
$ curl -o /tmp/pachctl.deb -L https://github.com/pachyderm/pachyderm/releases/download/v1.7.3/pachctl_1.7.3_amd64.deb && sudo dpkg -i /tmp/pachctl.deb
$ curl -o /tmp/pachctl.deb -L https://github.com/pachyderm/pachyderm/releases/download/v1.7.11/pachctl_1.7.11_amd64.deb && sudo dpkg -i /tmp/pachctl.deb
```

Please note that the client version should correspond with the pachd service version. For more information please consult: http://pachyderm.readthedocs.io/en/latest/index.html. Also, if you have your kubernetes client properly configured to talk with your remote cluster, you can simply install `pachctl` on your local machine and execute: `pachctl --namespace <namespace> port-forward &`.
Expand Down
2 changes: 1 addition & 1 deletion stable/pachyderm/templates/pachd_rolebinding.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
{{- if .Values.rbac.create }}
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: RoleBinding
kind: ClusterRoleBinding
metadata:
name: pachyderm
roleRef:
Expand Down
4 changes: 2 additions & 2 deletions stable/pachyderm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ pachd:
## For available images please check: https://hub.docker.com/r/pachyderm/pachd/tags/
image:
repository: pachyderm/pachd
tag: 1.7.3
tag: 1.7.11
pullPolicy: Always
worker:
repository: pachyderm/worker
tag: 1.7.3
tag: 1.7.11
resources:
## For non-local deployments, 1 cpu and 2G of memory requests are recommended
requests:
Expand Down

0 comments on commit 7a6e3f8

Please sign in to comment.