main.yml 894 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. # fixme: Once openshift stops resolving hostnames for node queries remove this...
  3. - name: Set hostname to IP Addr (WORKAROUND)
  4. hostname: name={{ openshift_bind_ip }}
  5. when: openshift_hostname_workaround
  6. - name: Configure local facts file
  7. file: path=/etc/ansible/facts.d/ state=directory mode=0750
  8. - name: Add KUBECONFIG to .bash_profile for user root
  9. lineinfile:
  10. dest: /root/.bash_profile
  11. regexp: "KUBECONFIG="
  12. line: "export KUBECONFIG=/var/lib/openshift/openshift.local.certificates/admin/.kubeconfig"
  13. state: present
  14. insertafter: EOF
  15. - name: Set common OpenShift facts
  16. include: set_facts.yml
  17. facts:
  18. - section: common
  19. option: env
  20. value: "{{ openshift_env | default('default') }}"
  21. - section: common
  22. option: host_type
  23. value: "{{ openshift_host_type }}"
  24. - section: common
  25. option: debug_level
  26. value: "{{ openshift_debug_level }}"