Skip to content

Commit 5ec29d4

Browse files
authored
Upgrade zalando operator (jsonnet-libs#528)
* feat(zalando-postgres-operator): remove versions >2y old; add versions 1.11-1.14 * fix(zalando-postgres-operator): re-add 1.8 for backwards compatibility
1 parent 8557354 commit 5ec29d4

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

libs/zalando-postgres-operator/config.jsonnet

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
local config = import 'jsonnet/config.jsonnet';
22
local versions = [
3-
{version: '1.8', tag: 'v1.8.2' },
4-
{version: '1.7', tag: 'v1.7.1' },
5-
{version: '1.6', tag: 'v1.6.3' },
3+
{ version: '1.14', tag: 'v1.14.0' },
4+
{ version: '1.13', tag: 'v1.13.0' },
5+
{ version: '1.12', tag: 'v1.12.2' },
6+
{ version: '1.11', tag: 'v1.11.0' },
7+
{ version: '1.8', tag: 'v1.8.2' },
68
];
79

810
config.new(
@@ -12,9 +14,9 @@ config.new(
1214
output: v.version,
1315
prefix: '^do\\.zalan\\.acid\\..*',
1416
crds: [
15-
'https://github.com/zalando/postgres-operator/raw/'+v.tag+'/charts/postgres-operator/crds/operatorconfigurations.yaml',
16-
'https://github.com/zalando/postgres-operator/raw/'+v.tag+'/charts/postgres-operator/crds/postgresqls.yaml',
17-
'https://github.com/zalando/postgres-operator/raw/'+v.tag+'/charts/postgres-operator/crds/postgresteams.yaml',
17+
'https://github.com/zalando/postgres-operator/raw/' + v.tag + '/charts/postgres-operator/crds/operatorconfigurations.yaml',
18+
'https://github.com/zalando/postgres-operator/raw/' + v.tag + '/charts/postgres-operator/crds/postgresqls.yaml',
19+
'https://github.com/zalando/postgres-operator/raw/' + v.tag + '/charts/postgres-operator/crds/postgresteams.yaml',
1820
],
1921
localName: 'zalando_postgres_operator',
2022
}

0 commit comments

Comments
 (0)