diff --git a/stable/pachyderm/Chart.yaml b/stable/pachyderm/Chart.yaml index e84b18fef8..86ad558530 100755 --- a/stable/pachyderm/Chart.yaml +++ b/stable/pachyderm/Chart.yaml @@ -10,7 +10,7 @@ keywords: - reproducibility - distributed - processing -version: 0.1.2 +version: 0.1.3 appVersion: 1.6.6 home: "https://pachyderm.io" sources: diff --git a/stable/pachyderm/README.md b/stable/pachyderm/README.md index db9cdac8fe..2ce53f5470 100644 --- a/stable/pachyderm/README.md +++ b/stable/pachyderm/README.md @@ -65,7 +65,7 @@ Based on the storage credentials used, fill in the corresponding parameters for | `s3.bucketName` | S3 bucket name | `""` | | `s3.endpoint` | S3 endpoint | `""` | | `s3.secure` | S3 secure | `"0"` | -| `s3.signature` | S3 signature | `"0"` | +| `s3.signature` | S3 signature | `"1"` | - 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 ```console $ 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\"" \ +--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 \ stable/pachyderm ``` diff --git a/stable/pachyderm/templates/pachd_secret.yaml b/stable/pachyderm/templates/pachd_secret.yaml index 21701d1bd0..0b3eb653bd 100644 --- a/stable/pachyderm/templates/pachd_secret.yaml +++ b/stable/pachyderm/templates/pachd_secret.yaml @@ -15,8 +15,8 @@ data: minio-secret: {{ .Values.s3.secretKey | b64enc | quote }} minio-bucket: {{ .Values.s3.bucketName | b64enc | quote }} minio-endpoint: {{ .Values.s3.endpoint | b64enc | quote }} - minio-secure: {{ .Values.s3.secure | b64enc | quote }} - minio-signature: {{ .Values.s3.signature | b64enc | quote }} + minio-secure: {{ toString .Values.s3.secure | b64enc | quote }} + minio-signature: {{ toString .Values.s3.signature | b64enc | quote }} {{- else if eq .Values.credentials "google" }} google-bucket: {{ .Values.google.bucketName | b64enc | quote }} {{- else if eq .Values.credentials "amazon" }} diff --git a/stable/pachyderm/values.yaml b/stable/pachyderm/values.yaml index dcd53465f9..588491b943 100644 --- a/stable/pachyderm/values.yaml +++ b/stable/pachyderm/values.yaml @@ -12,7 +12,7 @@ s3: ## For 'true' set the value to 1 secure: "0" ## For 'S3v2' signature, set the value to 1. For 'S3v4', set this value to 0 - signature: "0" + signature: "1" ## Google Cloud credentials google: