Example #1
0
    def info(self):
        info_type = first(self.app.pargs.info_type)
        data = Run(self.app, first(self.app.pargs.run_id)).inspect()

        if info_type == 'hosts':
            self._show_hosts(data)
Example #2
0
 def destroy(self):
     Run(self.app, first(self.app.pargs.run_id)).destroy()
Example #3
0
 def inspect(self):
     data = Run(self.app, first(self.app.pargs.run_id)).inspect()
     json.dump(data, sys.stdout, indent=4, sort_keys=True)
Example #4
0
 def bench(self):
     Run(self.app, first(self.app.pargs.run_id)).bench(
         first(self.app.pargs.load_profile), self.app.pargs.tps,
         self.app.pargs.total_tx)
Example #5
0
 def provision(self):
     Run(self.app, first(self.app.pargs.run_id)).provision()
Example #6
0
 def dependency(self):
     Run(self.app, first(self.app.pargs.run_id)).dependency()
Example #7
0
 def create(self):
     Run(self.app, first(self.app.pargs.run_id)).create()
Example #8
0
 def plan(self):
     Run(self.app, first(self.app.pargs.run_id)).plan()