openshift_register_node.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. import os
  5. import multiprocessing
  6. import socket
  7. from subprocess import check_output, Popen
  8. DOCUMENTATION = '''
  9. ---
  10. module: openshift_register_node
  11. short_description: This module registers an openshift-node with an openshift-master
  12. author: Jason DeTiberus
  13. requirements: [ openshift-node ]
  14. notes: Node resources can be specified using either the resources option or the following options: cpu, memory
  15. options:
  16. name:
  17. description:
  18. - id for this node (usually the node fqdn)
  19. required: true
  20. hostIP:
  21. description:
  22. - ip address for this node
  23. required: false
  24. cpu:
  25. description:
  26. - number of CPUs for this node
  27. required: false
  28. default: number of logical CPUs detected
  29. memory:
  30. description:
  31. - Memory available for this node in bytes
  32. required: false
  33. default: 80% MemTotal
  34. resources:
  35. description:
  36. - A json string representing Node resources
  37. required: false
  38. '''
  39. EXAMPLES = '''
  40. # Minimal node registration
  41. - openshift_register_node: name=ose3.node.example.com
  42. # Node registration with all options (using cpu and memory options)
  43. - openshift_register_node:
  44. name: ose3.node.example.com
  45. hostIP: 192.168.1.1
  46. apiVersion: v1beta1
  47. cpu: 1
  48. memory: 1073741824
  49. # Node registration with all options (using resources option)
  50. - openshift_register_node:
  51. name: ose3.node.example.com
  52. hostIP: 192.168.1.1
  53. apiVersion: v1beta1
  54. resources:
  55. capacity:
  56. cpu: 1
  57. memory: 1073741824
  58. '''
  59. def main():
  60. default_config='/var/lib/openshift/openshift.local.certificates/admin/.kubeconfig'
  61. module = AnsibleModule(
  62. argument_spec = dict(
  63. name = dict(required = True),
  64. hostIP = dict(),
  65. apiVersion = dict(),
  66. cpu = dict(),
  67. memory = dict(),
  68. resources = dict(),
  69. client_config = dict(default = default_config)
  70. ),
  71. supports_check_mode=True
  72. )
  73. if module.params['resources'] and (module.params['cpu'] or module.params['memory']):
  74. module.fail_json(msg="Error: argument resources cannot be specified with the following arguments: cpu, memory")
  75. client_env = os.environ.copy()
  76. client_env['KUBECONFIG'] = module.params['client_config']
  77. node_def = dict(
  78. metadata = dict(
  79. name = module.params['name']
  80. ),
  81. kind = 'Node',
  82. resources = dict(
  83. capacity = dict()
  84. )
  85. )
  86. for key, value in module.params.iteritems():
  87. if key in ['cpu', 'memory']:
  88. node_def['resources']['capacity'][key] = value
  89. elif key == 'name':
  90. node_def['id'] = value
  91. elif key != 'client_config':
  92. if value:
  93. node_def[key] = value
  94. if not node_def['resources']['capacity']['cpu']:
  95. node_def['resources']['capacity']['cpu'] = multiprocessing.cpu_count()
  96. if not node_def['resources']['capacity']['memory']:
  97. with open('/proc/meminfo', 'r') as mem:
  98. for line in mem:
  99. entries = line.split()
  100. if str(entries.pop(0)) == 'MemTotal:':
  101. mem_free_kb = int(entries.pop(0))
  102. mem_capacity = int(mem_free_kb * 1024 * .80)
  103. node_def['resources']['capacity']['memory'] = mem_capacity
  104. break
  105. try:
  106. output = check_output("osc get nodes", shell=True, env=client_env,
  107. stderr=subprocess.STDOUT)
  108. except subprocess.CalledProcessError as e:
  109. module.fail_json(msg="Failed to get node list", command=e.cmd,
  110. returncode=e.returncode, output=e.output)
  111. if module.check_mode:
  112. if re.search(module.params['name'], output, re.MULTILINE):
  113. module.exit_json(changed=False, node_def=node_def)
  114. else:
  115. module.exit_json(changed=True, node_def=node_def)
  116. p = Popen("osc create node -f -", shell=True, stdin=subprocess.PIPE,
  117. stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True,
  118. env=client_env)
  119. (out, err) = p.communicate(module.jsonify(node_def))
  120. ret = p.returncode
  121. if ret != 0:
  122. if re.search("minion \"%s\" already exists" % module.params['name'],
  123. err):
  124. module.exit_json(changed=False,
  125. msg="node definition already exists", node_def=node_def)
  126. else:
  127. module.fail_json(msg="Node creation failed.", ret=ret, out=out,
  128. err=err, node_def=node_def)
  129. module.exit_json(changed=True, out=out, err=err, ret=ret,
  130. node_def=node_def)
  131. # import module snippets
  132. from ansible.module_utils.basic import *
  133. main()