Add option for DNS nameservers to quantum_subnet module
This commit is contained in:
parent
aa64aecbed
commit
3fdbb56465
1 changed files with 18 additions and 7 deletions
|
@ -89,6 +89,11 @@ options:
|
||||||
- The ip that would be assigned to the gateway for this subnet
|
- The ip that would be assigned to the gateway for this subnet
|
||||||
required: false
|
required: false
|
||||||
default: None
|
default: None
|
||||||
|
dns_nameservers:
|
||||||
|
description:
|
||||||
|
- DNS nameservers for this subnet, comma-separated
|
||||||
|
required: false
|
||||||
|
default: None
|
||||||
allocation_pool_start:
|
allocation_pool_start:
|
||||||
description:
|
description:
|
||||||
- From the subnet pool the starting address from which the IP should be allocated
|
- From the subnet pool the starting address from which the IP should be allocated
|
||||||
|
@ -197,13 +202,14 @@ def _get_subnet_id(module, quantum):
|
||||||
def _create_subnet(module, quantum):
|
def _create_subnet(module, quantum):
|
||||||
quantum.format = 'json'
|
quantum.format = 'json'
|
||||||
subnet = {
|
subnet = {
|
||||||
'name': module.params['name'],
|
'name': module.params['name'],
|
||||||
'ip_version': module.params['ip_version'],
|
'ip_version': module.params['ip_version'],
|
||||||
'enable_dhcp': module.params['enable_dhcp'],
|
'enable_dhcp': module.params['enable_dhcp'],
|
||||||
'tenant_id': _os_tenant_id,
|
'tenant_id': _os_tenant_id,
|
||||||
'gateway_ip': module.params['gateway_ip'],
|
'gateway_ip': module.params['gateway_ip'],
|
||||||
'network_id': _os_network_id,
|
'dns_nameservers': module.params['dns_nameservers'],
|
||||||
'cidr': module.params['cidr'],
|
'network_id': _os_network_id,
|
||||||
|
'cidr': module.params['cidr'],
|
||||||
}
|
}
|
||||||
if module.params['allocation_pool_start'] and module.params['allocation_pool_end']:
|
if module.params['allocation_pool_start'] and module.params['allocation_pool_end']:
|
||||||
allocation_pools = [
|
allocation_pools = [
|
||||||
|
@ -215,6 +221,10 @@ def _create_subnet(module, quantum):
|
||||||
subnet.update({'allocation_pools': allocation_pools})
|
subnet.update({'allocation_pools': allocation_pools})
|
||||||
if not module.params['gateway_ip']:
|
if not module.params['gateway_ip']:
|
||||||
subnet.pop('gateway_ip')
|
subnet.pop('gateway_ip')
|
||||||
|
if module.params['dns_nameservers']:
|
||||||
|
subnet['dns_nameservers'] = module.params['dns_nameservers'].split(',')
|
||||||
|
else:
|
||||||
|
subnet.pop('dns_nameservers')
|
||||||
try:
|
try:
|
||||||
new_subnet = quantum.create_subnet(dict(subnet=subnet))
|
new_subnet = quantum.create_subnet(dict(subnet=subnet))
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
|
@ -247,6 +257,7 @@ def main():
|
||||||
ip_version = dict(default='4', choices=['4', '6']),
|
ip_version = dict(default='4', choices=['4', '6']),
|
||||||
enable_dhcp = dict(default='true', choices=BOOLEANS),
|
enable_dhcp = dict(default='true', choices=BOOLEANS),
|
||||||
gateway_ip = dict(default=None),
|
gateway_ip = dict(default=None),
|
||||||
|
dns_nameservers = dict(default=None),
|
||||||
allocation_pool_start = dict(default=None),
|
allocation_pool_start = dict(default=None),
|
||||||
allocation_pool_end = dict(default=None),
|
allocation_pool_end = dict(default=None),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue