push_via_dns.yml 545 B

12345678910111213
  1. ---
  2. # This is an ugly hack to verify settings are in a file without modifying them with lineinfile.
  3. # The template file will stomp any other settings made.
  4. - when: openshift_push_via_dns is not defined
  5. block:
  6. - name: check whether our docker-registry setting exists in the env file
  7. shell: "awk '/^OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000/' /etc/sysconfig/{{ openshift_service_type }}-master*"
  8. failed_when: false
  9. changed_when: false
  10. register: l_already_set
  11. - set_fact:
  12. openshift_push_via_dns: True