Skip to content

Commit

Permalink
Add clickhouse-operator from Altinity (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
vtomasr5 authored Jun 7, 2024
1 parent d00b4a5 commit 1523c6b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions libs/clickhouse-operator/config.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
local config = import 'jsonnet/config.jsonnet';
local versions = [
{ output: '0.23', version: 'release-0.23.5' },
{ output: '0.22', version: 'release-0.22.2' },
{ output: '0.21', version: 'release-0.21.3' },
];

config.new(
name='clickhouse-operator',
specs=[
{
local url = 'https://raw.githubusercontent.com/Altinity/clickhouse-operator/%s/deploy/operator/parts' % v.version,
output: v.output,
prefix: '^com\\.altinity\\.clickhouse\\..*',
crds: [
'%s/crd.yaml' % url,
],
localName: 'clickhouse-operator',
}
for v in versions
]
)

0 comments on commit 1523c6b

Please sign in to comment.