Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[gis-platform] version 2023.3.29 #236

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
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
9 changes: 9 additions & 0 deletions Breaking-Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@
- Rename `portal.max_body_size` to `portal.maxBodySize`
- Rename `portal.gzip_enabled` to `portal.gzip.enabled`

Before updating:

- Disable `allowDirectAccess` option on layers `admin.2gis` and `admin.2gis_traffic`
- Set `subDomains` option to `[]` (empty array) in `admin.2gis_traffic`

Those options did not work in previous releases, and were set to incorrect defaults.

You can do this in admin web interface or by running `configure.sh -c -p`

## [1.6.0]
#### catalog-api
- Rename
Expand Down
2 changes: 1 addition & 1 deletion charts/gis-platform/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: GIS Platform
type: application

version: 1.7.0
appVersion: 2022.9.29
appVersion: 2023.3.29

dependencies:
- name: zookeeper
Expand Down
8 changes: 4 additions & 4 deletions charts/gis-platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ See the [documentation](https://docs.2gis.com/en/on-premise/gis-platform) to lea
| Name | Description | Value |
| ---------------------------- | ----------------------------------- | ------------------------------------- |
| `spcore.image.repository` | SPCore service image repository. | `2gis-on-premise/gis_platform_spcore` |
| `spcore.image.tag` | SPCore service image tag. | `2022.9.29` |
| `spcore.image.tag` | SPCore service image tag. | `2023.3.29` |
| `portal.image.repository` | Portal service image repository. | `2gis-on-premise/gis_platform_portal` |
| `portal.image.tag` | Portal service image tag. | `2022.9.29` |
| `portal.image.tag` | Portal service image tag. | `2023.3.29` |
| `zookeeper.image.repository` | ZooKeeper service image repository. | `2gis-on-premise/zookeeper` |
| `zookeeper.image.tag` | ZooKeeper service image tag. | `3.7.0-debian-10-r265` |

Expand Down Expand Up @@ -144,9 +144,9 @@ See the [documentation](https://docs.2gis.com/en/on-premise/gis-platform) to lea
| Name | Description | Value |
| ------------------------------------- | ------------------------------------ | -------- |
| `spcore.resources` | **Limits for the SPCore service** | |
| `spcore.resources.requests.cpu` | A CPU request. | `800m` |
| `spcore.resources.requests.cpu` | A CPU request. | `1` |
| `spcore.resources.requests.memory` | A memory request. | `4096Mi` |
| `spcore.resources.limits.cpu` | A CPU limit. | `800m` |
| `spcore.resources.limits.cpu` | A CPU limit. | `2` |
| `spcore.resources.limits.memory` | A memory limit. | `4096Mi` |
| `portal.resources` | **Limits for the Portal service** | |
| `portal.resources.requests.cpu` | A CPU request. | `100m` |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh
# vim:sw=4:ts=4:et

set -e

if [ -f "/etc/nginx/nginx.conf.template" ]; then
echo "Copying nginx.conf template"
cp /etc/nginx/nginx.conf.template /etc/nginx/nginx.conf
fi
1 change: 1 addition & 0 deletions charts/gis-platform/configs/spcore/SPCore.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"pluginsPath": "plugins",
"silentlyApplyMigrations": true,
"RequireUniqueEmail": true,
"AutoConfirmEmail": true,
"maxRenderTargets": {{- .Values.spcore.maxRenderTargets }},
"staticPath": "/app/static",
"previewStaticPath": "/app/static",
Expand Down
Loading