示例#1
0
 def restart_cluster(self, context, cluster_id):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.restart_cluster(context, cluster_id)
示例#2
0
 def grow_cluster(self, context, cluster_id, new_instance_ids):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.grow_cluster(context, cluster_id, new_instance_ids)
示例#3
0
 def shrink_cluster(self, context, cluster_id, instance_ids):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.shrink_cluster(context, cluster_id, instance_ids)
示例#4
0
文件: manager.py 项目: rumale/trove
 def delete_cluster(self, context, cluster_id):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.delete_cluster(context, cluster_id)
示例#5
0
 def create_cluster(self, context, cluster_id):
     with EndNotification(context, cluster_id=cluster_id):
         cluster_tasks = models.load_cluster_tasks(context, cluster_id)
         cluster_tasks.create_cluster(context, cluster_id)
示例#6
0
 def upgrade_cluster(self, context, cluster_id, datastore_version_id):
     datastore_version = DatastoreVersion.load_by_uuid(datastore_version_id)
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.upgrade_cluster(context, cluster_id, datastore_version)
示例#7
0
文件: manager.py 项目: rumale/trove
 def create_cluster(self, context, cluster_id):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.create_cluster(context, cluster_id)
示例#8
0
文件: manager.py 项目: grze/trove
 def delete_cluster(self, context, cluster_id):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.delete_cluster(context, cluster_id)
示例#9
0
文件: manager.py 项目: nnt1997/trove
 def grow_cluster(self, context, cluster_id, new_instance_ids):
     with EndNotification(context, cluster_id=cluster_id,
                          instance_ids=new_instance_ids):
         cluster_tasks = models.load_cluster_tasks(context, cluster_id)
         cluster_tasks.grow_cluster(context, cluster_id, new_instance_ids)
示例#10
0
 def delete_cluster(self, context, cluster_id):
     with EndNotification(context):
         cluster_tasks = models.load_cluster_tasks(context, cluster_id)
         cluster_tasks.delete_cluster(context, cluster_id)
示例#11
0
文件: manager.py 项目: grze/trove
 def create_cluster(self, context, cluster_id):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.create_cluster(context, cluster_id)
示例#12
0
 def shrink_cluster(self, context, cluster_id, instance_ids):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.shrink_cluster(context, cluster_id, instance_ids)
示例#13
0
 def grow_cluster(self, context, cluster_id, new_instance_ids):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.grow_cluster(context, cluster_id, new_instance_ids)
示例#14
0
 def create_cluster(self, context, cluster_id):
     with EndNotification(context, cluster_id=cluster_id):
         cluster_tasks = models.load_cluster_tasks(context, cluster_id)
         cluster_tasks.create_cluster(context, cluster_id)
示例#15
0
 def upgrade_cluster(self, context, cluster_id, datastore_version_id):
     datastore_version = DatastoreVersion.load_by_uuid(datastore_version_id)
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.upgrade_cluster(context, cluster_id, datastore_version)
示例#16
0
文件: manager.py 项目: nnt1997/trove
 def shrink_cluster(self, context, cluster_id, instance_ids):
     with EndNotification(context, cluster_id=cluster_id,
                          instance_ids=instance_ids):
         cluster_tasks = models.load_cluster_tasks(context, cluster_id)
         cluster_tasks.shrink_cluster(context, cluster_id, instance_ids)
示例#17
0
 def delete_cluster(self, context, cluster_id):
     with EndNotification(context):
         cluster_tasks = models.load_cluster_tasks(context, cluster_id)
         cluster_tasks.delete_cluster(context, cluster_id)
示例#18
0
 def restart_cluster(self, context, cluster_id):
     cluster_tasks = models.load_cluster_tasks(context, cluster_id)
     cluster_tasks.restart_cluster(context, cluster_id)