diff --git a/releasenotes/notes/enable-pxc-grow-shrink-17568a1c280f1c42.yaml b/releasenotes/notes/enable-pxc-grow-shrink-17568a1c280f1c42.yaml new file mode 100644 index 0000000..1a0b1b5 --- /dev/null +++ b/releasenotes/notes/enable-pxc-grow-shrink-17568a1c280f1c42.yaml @@ -0,0 +1,3 @@ +--- +fixes: + - Enable cluster grow and shrink panels for pxc. diff --git a/trove_dashboard/content/databases/db_capability.py b/trove_dashboard/content/databases/db_capability.py index cf1baf7..4d0025b 100644 --- a/trove_dashboard/content/databases/db_capability.py +++ b/trove_dashboard/content/databases/db_capability.py @@ -25,7 +25,8 @@ VERTICA = "vertica" _mysql_compatible_datastores = (MYSQL, MARIA, PERCONA, PERCONA_CLUSTER) _cluster_capable_datastores = (CASSANDRA, MARIA, MONGODB, PERCONA_CLUSTER, REDIS, VERTICA) -_cluster_grow_shrink_capable_datastores = (CASSANDRA, MARIA, MONGODB, REDIS) +_cluster_grow_shrink_capable_datastores = (CASSANDRA, MARIA, MONGODB, + PERCONA_CLUSTER, REDIS) def can_modify_cluster(datastore):