configure-proxy-settings.yml 686 B

123456789101112131415
  1. ---
  2. - name: Configure Proxy Settings
  3. lineinfile:
  4. dest: /etc/sysconfig/{{ openshift_service_type }}-node
  5. regexp: "{{ item.regex }}"
  6. line: "{{ item.line }}"
  7. create: true
  8. with_items:
  9. - regex: '^HTTP_PROXY='
  10. line: "HTTP_PROXY={{ openshift.common.http_proxy | default('') }}"
  11. - regex: '^HTTPS_PROXY='
  12. line: "HTTPS_PROXY={{ openshift.common.https_proxy | default('') }}"
  13. - regex: '^NO_PROXY='
  14. line: "NO_PROXY={{ openshift.common.no_proxy | default([]) }},{{ openshift.common.portal_net }},{{ hostvars[groups.oo_first_master.0].openshift.master.sdn_cluster_network_cidr }}"
  15. when: ('http_proxy' in openshift.common and openshift.common.http_proxy != '')