Skip to content

Commit db9f38c

Browse files
committed
fix(registry): add support for excluding services from vendors and exclude ClickHouse from Platform.sh
1 parent 28734df commit db9f38c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

shared/data/registry.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1363,6 +1363,9 @@
13631363
"repo_name": "clickhouse",
13641364
"runtime": false,
13651365
"type": "clickhouse",
1366+
"exclude_from": [
1367+
"platformsh"
1368+
],
13661369
"versions": {
13671370
"supported": [
13681371
"25.3",
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<!-- shortcode start {{ .Name }} -->
22
{{ $registry := .Site.Data.registry }}
3+
{{ $currentPlatform := .Site.Params.vendor.altname }}
34

45
| Service | `type` | Supported versions |
5-
| ------- | ------ | ------------------ |{{ range sort $registry "type" }}{{ if eq .runtime false }}
6+
| ------- | ------ | ------------------ |{{ range sort $registry "type" }}{{ if and (eq .runtime false) (not (in .exclude_from $currentPlatform)) }}
67
| [{{ .name }}]({{ .docs.url }}){{ if .premium }} {{ partial "premium-features/badge" }}{{ end }} | `{{ .type }}` | {{ delimit .versions.supported ", " }} |{{ end }}{{ end }}
78
<!-- shortcode end {{ .Name }} -->

0 commit comments

Comments
 (0)