-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix world * Add GLUE2.1 output
- Loading branch information
Showing
56 changed files
with
1,692 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
class BaseProvider(object): | ||
def __init__(self, opts): | ||
self.opts = opts | ||
|
||
def get_site_info(self, **kwargs): | ||
return {} | ||
|
||
def get_images(self, **kwargs): | ||
return {} | ||
|
||
def get_templates(self, **kwargs): | ||
return {} | ||
|
||
def get_instances(self, **kwargs): | ||
return {} | ||
|
||
def get_compute_shares(self, **kwargs): | ||
return {} | ||
|
||
def get_compute_quotas(self, **kwargs): | ||
return {} | ||
|
||
def get_compute_endpoints(self, **kwargs): | ||
return {} | ||
|
||
def get_storage_endpoints(self, **kwargs): | ||
return {} | ||
|
||
@staticmethod | ||
def populate_parser(parser): | ||
'''Populate the argparser 'parser' with the needed options.''' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.