Skip to content

Commit

Permalink
feat: Add MySQL Operator (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishforbes authored Dec 29, 2023
1 parent dde851f commit 0d4aa42
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions libs/mysql-operator/config.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
local config = import 'jsonnet/config.jsonnet';

local versions = [
{output: '2.1.1', version: '8.2.0-2.1.1'}
];

config.new(
name='mysql-operator',
specs=[
{
output: v.output,
prefix: '^com\\.oracle\\.mysql\\..*',
crds: ['https://raw.githubusercontent.com/mysql/mysql-operator/%s/helm/mysql-operator/crds/crd.yaml' % v.version],
}
for v in versions
]
)

0 comments on commit 0d4aa42

Please sign in to comment.