Merge "Script to generate dns for infracloud"
This commit is contained in:
commit
4640be7648
13
tools/infracloud_dns_from_bifrost.py
Executable file
13
tools/infracloud_dns_from_bifrost.py
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import yaml
|
||||
|
||||
f = open('hiera/group/infracloud.yaml')
|
||||
|
||||
bf = yaml.load(f.read())
|
||||
|
||||
for node in bf['ironic_inventory_hpuswest']:
|
||||
name = node
|
||||
ip = bf['ironic_inventory_hpuswest'][node]['ipv4_public_address']
|
||||
print "rackdns record-create --name {0} --type A".format(name),
|
||||
print "--data {0} --ttl 3600 openstack.org".format(ip)
|
Loading…
x
Reference in New Issue
Block a user