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

[stable/pachyderm] Fix RBAC and bump to 0.1.9 #11244

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
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.8.3
home: "https://pachyderm.io"
sources:
- "https://github.com/pachyderm/pachyderm"
Expand Down
4 changes: 2 additions & 2 deletions stable/pachyderm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ $ helm install --namespace pachyderm --name my-release -f values.yaml stable/pac
Accessing the pachd service
---------------------------

In order to use Pachyderm, please login through ssh to the master node and install the Pachyderm client:
In order to use Pachyderm you can 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.8.3/pachctl_1.8.3_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
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.8.3
pullPolicy: Always
worker:
repository: pachyderm/worker
tag: 1.7.3
tag: 1.8.3
resources:
## For non-local deployments, 1 cpu and 2G of memory requests are recommended
requests:
Expand Down