diff --git a/charts/tiles-api/Chart.yaml b/charts/tiles-api/Chart.yaml index 3d5101152..60a60514f 100644 --- a/charts/tiles-api/Chart.yaml +++ b/charts/tiles-api/Chart.yaml @@ -5,7 +5,7 @@ description: Tiles API for getting cartographic data type: application version: 1.29.0 -appVersion: 4.54.0 +appVersion: 4.61.0 maintainers: - name: 2gis diff --git a/charts/tiles-api/README.md b/charts/tiles-api/README.md index cce8c0aca..dcbdfbcd0 100644 --- a/charts/tiles-api/README.md +++ b/charts/tiles-api/README.md @@ -33,6 +33,7 @@ See the [documentation](https://docs.2gis.com/en/on-premise/map) to learn about: | `dgctlStorage.host` | S3 endpoint. Format: `host:port`. | `""` | | `dgctlStorage.secure` | If S3 uses https. | `false` | | `dgctlStorage.bucket` | S3 bucket name. | `""` | +| `dgctlStorage.region` | S3 region. | `""` | | `dgctlStorage.accessKey` | S3 access key for accessing the bucket. | `""` | | `dgctlStorage.secretKey` | S3 secret key for accessing the bucket. | `""` | | `dgctlStorage.manifest` | The path to the [manifest file](https://docs.2gis.com/en/on-premise/overview#nav-lvl2@paramCommon_deployment_steps). Format: `manifests/0000000000.json`.
This file contains the description of pieces of data that the service requires to operate. | `""` | diff --git a/charts/tiles-api/configs/importer/importer.yaml b/charts/tiles-api/configs/importer/importer.yaml index 0a5c06374..e5effae47 100644 --- a/charts/tiles-api/configs/importer/importer.yaml +++ b/charts/tiles-api/configs/importer/importer.yaml @@ -12,6 +12,7 @@ storage: host: {{ required "Valid .Values.dgctlStorage.host required!" .Values.dgctlStorage.host }} secure: {{ .Values.dgctlStorage.secure }} bucket: {{ required "Valid .Values.dgctlStorage.bucket required!" .Values.dgctlStorage.bucket }} + region: {{ .Values.dgctlStorage.region }} url-lifetime-period: 60m k8s: diff --git a/charts/tiles-api/values.yaml b/charts/tiles-api/values.yaml index 52d828d2e..4873d5a70 100644 --- a/charts/tiles-api/values.yaml +++ b/charts/tiles-api/values.yaml @@ -9,6 +9,7 @@ dgctlDockerRegistry: '' # @param dgctlStorage.host S3 endpoint. Format: `host:port`. # @param dgctlStorage.secure If S3 uses https. # @param dgctlStorage.bucket S3 bucket name. +# @param dgctlStorage.region S3 region. # @param dgctlStorage.accessKey S3 access key for accessing the bucket. # @param dgctlStorage.secretKey S3 secret key for accessing the bucket. # @param dgctlStorage.manifest The path to the [manifest file](https://docs.2gis.com/en/on-premise/overview#nav-lvl2@paramCommon_deployment_steps). Format: `manifests/0000000000.json`.
This file contains the description of pieces of data that the service requires to operate. @@ -17,6 +18,7 @@ dgctlStorage: host: '' secure: false bucket: '' + region: '' accessKey: '' secretKey: '' manifest: ''