atomic_proxy.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. # Set http_proxy, https_proxy, and no_proxy in /etc/atomic.conf
  3. # regexp: the line starts with or without #, followed by the string
  4. # http_proxy, then either : or =
  5. - block:
  6. - name: Add http_proxy to /etc/atomic.conf
  7. lineinfile:
  8. dest: /etc/atomic.conf
  9. regexp: "^#?http_proxy[:=]{1}"
  10. line: "http_proxy: {{ openshift.common.http_proxy | default('') }}"
  11. when:
  12. - openshift.common.http_proxy is defined
  13. - openshift.common.http_proxy != ''
  14. - name: Add https_proxy to /etc/atomic.conf
  15. lineinfile:
  16. dest: /etc/atomic.conf
  17. regexp: "^#?https_proxy[:=]{1}"
  18. line: "https_proxy: {{ openshift.common.https_proxy | default('') }}"
  19. when:
  20. - openshift.common.https_proxy is defined
  21. - openshift.common.https_proxy != ''
  22. - name: Add no_proxy to /etc/atomic.conf
  23. lineinfile:
  24. dest: /etc/atomic.conf
  25. regexp: "^#?no_proxy[:=]{1}"
  26. line: "no_proxy: {{ openshift.common.no_proxy | default('') }}"
  27. when:
  28. - openshift.common.no_proxy is defined
  29. - openshift.common.no_proxy != ''