diff --git a/charts/faceapi/Chart.yaml b/charts/faceapi/Chart.yaml index 6161f66..2725084 100644 --- a/charts/faceapi/Chart.yaml +++ b/charts/faceapi/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 name: faceapi home: https://faceapi.regulaforensics.com/ -version: 1.0.0 +version: 1.0.1 appVersion: nightly description: Face Recognition Service. On-premise and cloud integration icon: https://secure.gravatar.com/avatar/71a5efd69d82e444129ad18f51224bbb.jpg diff --git a/charts/faceapi/README.md b/charts/faceapi/README.md index 2089156..71ab660 100644 --- a/charts/faceapi/README.md +++ b/charts/faceapi/README.md @@ -141,6 +141,7 @@ The command removes all the Kubernetes components associated with the chart and | `storage.type` | Global storage type. Possible values: `fs`, `s3`, `gcs`, `az` | `fs` | | `storage.s3.accessKey` | S3 Access Key | `""` | | `storage.s3.accessSecret` | S3 Secret Access Key | `""` | +| `storage.s3.endpoint` | S3 endpoint | `"https://s3.amazonaws.com"` | | `storage.s3.region` | S3 region | `"eu-central-1"` | | `storage.s3.secure` | Secure connection | `"true"` | | `storage.s3.endpoint` | Enpoint to the S3 compatible storage | `""` | diff --git a/charts/faceapi/templates/config.tpl b/charts/faceapi/templates/config.tpl index cb1057f..092ea1a 100644 --- a/charts/faceapi/templates/config.tpl +++ b/charts/faceapi/templates/config.tpl @@ -57,6 +57,7 @@ service: accessKey: {{ .Values.storage.s3.accessKey }} accessSecret: {{ .Values.storage.s3.accessSecret }} {{- end }} + endpoint: {{ default "https://s3.amazonaws.com" .Values.storage.s3.endpoint }} region: {{ default "eu-central-1" .Values.storage.s3.region }} secure: {{ default "true" .Values.storage.s3.secure }} {{- end }} diff --git a/charts/faceapi/values.yaml b/charts/faceapi/values.yaml index 8299d45..e56c4fa 100644 --- a/charts/faceapi/values.yaml +++ b/charts/faceapi/values.yaml @@ -158,6 +158,7 @@ storage: # s3: # accessKey: # accessSecret: + # endpoint: "https://s3.amazonaws.com" # region: "eu-central-1" # secure: true # # awsCredentialsSecretName overrides storage.s3.accessKey/s3.accessSecret values