Пример #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
 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
 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
 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
 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
 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
 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)