diff --git a/shared/data/registry.json b/shared/data/registry.json index 209d731aa2..96bd136c70 100644 --- a/shared/data/registry.json +++ b/shared/data/registry.json @@ -28,9 +28,7 @@ "95", "91" ], - "legacy": [ - - ] + "legacy": [] }, "versions-dedicated-gen-3": { "deprecated": [], @@ -472,19 +470,20 @@ "versions": { "deprecated": [ "11.2", + "11.0", + "10.5", "10.4", + "10.3", "10.2", "10.1", "10.0", "5.5" ], "supported": [ - "11.0", + "11.8", + "11.4", "10.11", - "10.6", - "10.5", - "10.4", - "10.3" + "10.6" ] }, "versions-dedicated-gen-2": { @@ -1348,5 +1347,33 @@ "1.6" ] } + }, + "clickhouse": { + "description": "ClickHouse is a high-performance column-oriented, distributed, OLAP (Online Analytical Processing) database.", + "disk": true, + "docs": { + "relationship_name": "clickhouse", + "service_name": "clickhouse", + "url": "/add-services/clickhouse.html" + }, + "endpoint": "clickhouse", + "min_disk_size": 512, + "configuration": "applications:\n :\n relationships:\n :", + "name": "ClickHouse", + "repo_name": "clickhouse", + "runtime": false, + "type": "clickhouse", + "exclude_from": [ + "platformsh" + ], + "versions": { + "supported": [ + "25.3", + "24.3", + "23.8" + ], + "deprecated": [], + "legacy": [] + } } -} +} \ No newline at end of file diff --git a/themes/psh-docs/layouts/shortcodes/supported-services.md b/themes/psh-docs/layouts/shortcodes/supported-services.md index 495f2efcce..fd3fe02659 100644 --- a/themes/psh-docs/layouts/shortcodes/supported-services.md +++ b/themes/psh-docs/layouts/shortcodes/supported-services.md @@ -1,7 +1,8 @@ {{ $registry := .Site.Data.registry }} +{{ $currentPlatform := .Site.Params.vendor.altname }} | Service | `type` | Supported versions | -| ------- | ------ | ------------------ |{{ range sort $registry "type" }}{{ if eq .runtime false }} +| ------- | ------ | ------------------ |{{ range sort $registry "type" }}{{ if and (eq .runtime false) (not (in .exclude_from $currentPlatform)) }} | [{{ .name }}]({{ .docs.url }}){{ if .premium }} {{ partial "premium-features/badge" }}{{ end }} | `{{ .type }}` | {{ delimit .versions.supported ", " }} |{{ end }}{{ end }}