Enable pxc grow/shrink

Enable cluster grow and shrink menu option for pxc.

Change-Id: I387d4ae4bde64288af2132892f7244edd9b9ce16
Closes-Bug: #1648235
This commit is contained in:
Duk Loi 2016-10-18 18:15:52 -04:00
parent 98f05cb203
commit 36a705fc90
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,3 @@
---
fixes:
- Enable cluster grow and shrink panels for pxc.

View File

@ -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):