Skip to content

Commit bb6962f

Browse files
jonandernovellak8s-ci-robot
authored andcommitted
Updated instructions and default signature method (helm#3336)
1 parent 59733d9 commit bb6962f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

stable/pachyderm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords:
1010
- reproducibility
1111
- distributed
1212
- processing
13-
version: 0.1.2
13+
version: 0.1.3
1414
appVersion: 1.6.6
1515
home: "https://pachyderm.io"
1616
sources:

stable/pachyderm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Based on the storage credentials used, fill in the corresponding parameters for
6565
| `s3.bucketName` | S3 bucket name | `""` |
6666
| `s3.endpoint` | S3 endpoint | `""` |
6767
| `s3.secure` | S3 secure | `"0"` |
68-
| `s3.signature` | S3 signature | `"0"` |
68+
| `s3.signature` | S3 signature | `"1"` |
6969

7070

7171
- With `Google Cloud` credentials, you must define your `GCS bucket name`:
@@ -110,7 +110,7 @@ You should install the chart specifying each parameter using the `--set key=valu
110110

111111
```console
112112
$ helm install --namespace pachyderm --name my-release \
113-
--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\"" \
113+
--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 \
114114
stable/pachyderm
115115
```
116116

stable/pachyderm/templates/pachd_secret.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ data:
1515
minio-secret: {{ .Values.s3.secretKey | b64enc | quote }}
1616
minio-bucket: {{ .Values.s3.bucketName | b64enc | quote }}
1717
minio-endpoint: {{ .Values.s3.endpoint | b64enc | quote }}
18-
minio-secure: {{ .Values.s3.secure | b64enc | quote }}
19-
minio-signature: {{ .Values.s3.signature | b64enc | quote }}
18+
minio-secure: {{ toString .Values.s3.secure | b64enc | quote }}
19+
minio-signature: {{ toString .Values.s3.signature | b64enc | quote }}
2020
{{- else if eq .Values.credentials "google" }}
2121
google-bucket: {{ .Values.google.bucketName | b64enc | quote }}
2222
{{- else if eq .Values.credentials "amazon" }}

stable/pachyderm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ s3:
1212
## For 'true' set the value to 1
1313
secure: "0"
1414
## For 'S3v2' signature, set the value to 1. For 'S3v4', set this value to 0
15-
signature: "0"
15+
signature: "1"
1616

1717
## Google Cloud credentials
1818
google:

0 commit comments

Comments
 (0)