Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)