Fix typo and add function description
This commit is contained in:
parent
b052507134
commit
f2a7ac258d
1 changed files with 8 additions and 1 deletions
|
@ -67,12 +67,12 @@ class OpenNebulaManager():
|
||||||
except WrongNameError as wrong_name_err:
|
except WrongNameError as wrong_name_err:
|
||||||
opennebula_user = self.oneadmin_client.call(oca.User.METHODS['allocate'], email,
|
opennebula_user = self.oneadmin_client.call(oca.User.METHODS['allocate'], email,
|
||||||
password, 'core')
|
password, 'core')
|
||||||
|
return opennebula_user
|
||||||
except ConnectionRefusedError:
|
except ConnectionRefusedError:
|
||||||
print('Could not connect to host: {host} via protocol {protocol}'.format(
|
print('Could not connect to host: {host} via protocol {protocol}'.format(
|
||||||
host=settings.OPENNEBULA_DOMAIN,
|
host=settings.OPENNEBULA_DOMAIN,
|
||||||
protocol=settings.OPENNEBULA_PROTOCOL)
|
protocol=settings.OPENNEBULA_PROTOCOL)
|
||||||
)
|
)
|
||||||
return opennebula_user
|
|
||||||
def _get_user_pool(self):
|
def _get_user_pool(self):
|
||||||
try:
|
try:
|
||||||
user_pool = oca.UserPool(self.oneadmin_client)
|
user_pool = oca.UserPool(self.oneadmin_client)
|
||||||
|
@ -84,6 +84,13 @@ class OpenNebulaManager():
|
||||||
)
|
)
|
||||||
return user_pool
|
return user_pool
|
||||||
def create_template(self, name, cores, memory, disk_size):
|
def create_template(self, name, cores, memory, disk_size):
|
||||||
|
"""Create and add a new template to opennebula.
|
||||||
|
:param name: A string representation describing the template.
|
||||||
|
Used as label in view.
|
||||||
|
:param cores: Amount of virtual cpu cores for the VM.
|
||||||
|
:param memory: Amount of RAM for the VM (MB)
|
||||||
|
:param disk_size: Amount of disk space for VM (MB)
|
||||||
|
"""
|
||||||
template_string_formatter = """<TEMPLATE>
|
template_string_formatter = """<TEMPLATE>
|
||||||
<NAME>{name}</NAME>
|
<NAME>{name}</NAME>
|
||||||
<MEMORY>{memory}</MEMORY>
|
<MEMORY>{memory}</MEMORY>
|
||||||
|
|
Loading…
Reference in a new issue