openshift_node.py 1.2 KB

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