Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/postgres-operator-ui/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ spec:
"limit_iops": 16000,
"limit_throughput": 1000,
"postgresql_versions": [
"16",
"15",
"14",
"13",
Expand Down
1 change: 1 addition & 0 deletions manifests/postgresql.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ spec:
- "13"
- "14"
- "15"
- "16"
parameters:
type: object
additionalProperties:
Expand Down
3 changes: 3 additions & 0 deletions pkg/apis/acid.zalan.do/v1/crds.go
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,9 @@ var PostgresCRDResourceValidation = apiextv1.CustomResourceValidation{
{
Raw: []byte(`"15"`),
},
{
Raw: []byte(`"16"`),
},
},
},
"parameters": {
Expand Down
1 change: 1 addition & 0 deletions ui/manifests/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ spec:
"limit_iops": 16000,
"limit_throughput": 1000,
"postgresql_versions": [
"16",
"15",
"14",
"13",
Expand Down
2 changes: 1 addition & 1 deletion ui/operator_ui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def index():
'users_visible': True,
'databases_visible': True,
'resources_visible': RESOURCES_VISIBLE,
'postgresql_versions': ['11', '12', '13', '14', '15'],
'postgresql_versions': ['11', '12', '13', '14', '15', '16'],
'dns_format_string': '{0}.{1}',
'pgui_link': '',
'static_network_whitelist': {},
Expand Down
2 changes: 1 addition & 1 deletion ui/operator_ui/spiloutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def read_versions(
if uid == 'wal' or defaulting(lambda: UUID(uid))
]

BACKUP_VERSION_PREFIXES = ['', '9.6/', '10/', '11/', '12/', '13/', '14/', '15/']
BACKUP_VERSION_PREFIXES = ['', '9.6/', '10/', '11/', '12/', '13/', '14/', '15/', '16/']

def read_basebackups(
pg_cluster,
Expand Down
1 change: 1 addition & 0 deletions ui/run_local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ default_operator_ui_config='{
"limit_iops": 16000,
"limit_throughput": 1000,
"postgresql_versions": [
"16",
"15",
"14",
"13",
Expand Down