configure-proxy-settings.yml 776 B

1234567891011121314151617181920
  1. ---
  2. - openshift_facts:
  3. role: master
  4. local_facts:
  5. cluster_hostname: "{{ openshift_master_cluster_hostname | default(None) }}"
  6. - name: Configure Proxy Settings
  7. lineinfile:
  8. dest: /etc/sysconfig/{{ openshift_service_type }}-node
  9. regexp: "{{ item.regex }}"
  10. line: "{{ item.line }}"
  11. create: true
  12. with_items:
  13. - regex: '^HTTP_PROXY='
  14. line: "HTTP_PROXY={{ openshift.common.http_proxy | default('') }}"
  15. - regex: '^HTTPS_PROXY='
  16. line: "HTTPS_PROXY={{ openshift.common.https_proxy | default('') }}"
  17. - regex: '^NO_PROXY='
  18. line: "NO_PROXY={{ openshift.common.no_proxy | default([]) }},{{ openshift.common.portal_net }},{{ openshift_cluster_network_cidr }}"
  19. when: ('http_proxy' in openshift.common and openshift.common.http_proxy != '')