openshift_node.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. '''
  5. Custom filters for use in openshift-node
  6. '''
  7. from ansible import errors
  8. class FilterModule(object):
  9. ''' Custom ansible filters for use by openshift_node role'''
  10. @staticmethod
  11. def get_dns_ip(openshift_dns_ip, hostvars):
  12. ''' Navigates the complicated logic of when to set dnsIP
  13. In all situations if they've set openshift_dns_ip use that
  14. For 1.0/3.0 installs we use the openshift_master_cluster_vip, openshift_node_first_master_ip, else None
  15. For 1.1/3.1 installs we use openshift_master_cluster_vip, else None (product will use kube svc ip)
  16. For 1.2/3.2+ installs we set to the node's default interface ip
  17. '''
  18. if not issubclass(type(hostvars), dict):
  19. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  20. # We always use what they've specified if they've specified a value
  21. if openshift_dns_ip != None:
  22. return openshift_dns_ip
  23. if bool(hostvars['openshift']['common']['version_gte_3_2_or_1_2']):
  24. return hostvars['ansible_default_ipv4']['address']
  25. elif bool(hostvars['openshift']['common']['version_gte_3_1_or_1_1']):
  26. if 'openshift_master_cluster_vip' in hostvars:
  27. return hostvars['openshift_master_cluster_vip']
  28. else:
  29. if 'openshift_master_cluster_vip' in hostvars:
  30. return hostvars['openshift_master_cluster_vip']
  31. elif 'openshift_node_first_master_ip' in hostvars:
  32. return hostvars['openshift_node_first_master_ip']
  33. return None
  34. def filters(self):
  35. ''' returns a mapping of filters to methods '''
  36. return {'get_dns_ip': self.get_dns_ip}