passthrough.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ---
  2. # Generate a self-signed certificate when there is no user-supplied certificate
  3. - name: Configure self-signed certificate file paths
  4. set_fact:
  5. docker_registry_cert_path: "/etc/origin/master/registry.crt"
  6. docker_registry_key_path: "/etc/origin/master/registry.key"
  7. docker_registry_cacert_path: "/etc/origin/master/ca.crt"
  8. docker_registry_self_signed: true
  9. when:
  10. - "'certfile' not in openshift_hosted_registry_routecertificates"
  11. - "'keyfile' not in openshift_hosted_registry_routecertificates"
  12. # Retrieve user supplied certificate files if they are provided
  13. - when:
  14. - "'certfile' in openshift_hosted_registry_routecertificates"
  15. - "'keyfile' in openshift_hosted_registry_routecertificates"
  16. block:
  17. - name: Configure provided certificate file paths
  18. set_fact:
  19. docker_registry_cert_path: "/etc/origin/master/named_certificates/{{ openshift_hosted_registry_routecertificates['certfile'] | basename }}"
  20. docker_registry_key_path: "/etc/origin/master/named_certificates/{{ openshift_hosted_registry_routecertificates['keyfile'] | basename }}"
  21. docker_registry_self_signed: false
  22. # Since we end up bundling the cert, cacert and key in a .pem file, the 'cafile'
  23. # is optional
  24. - name: Configure provided ca certificate file path
  25. set_fact:
  26. docker_registry_cacert_path: "/etc/origin/master/named_certificates/{{ openshift_hosted_registry_routecertificates['cafile'] | basename }}"
  27. when: "'cafile' in openshift_hosted_registry_routecertificates"
  28. - name: Retrieve provided certificate files
  29. copy:
  30. backup: True
  31. dest: "/etc/origin/master/named_certificates/{{ item.value | basename }}"
  32. src: "{{ item.value }}"
  33. when: item.key in ['certfile', 'keyfile', 'cafile'] and item.value
  34. with_dict: "{{ openshift_hosted_registry_routecertificates }}"
  35. - name: Configure a passthrough route for docker-registry
  36. oc_route:
  37. name: docker-registry
  38. namespace: "{{ openshift_hosted_registry_namespace }}"
  39. service_name: docker-registry
  40. tls_termination: "{{ openshift_hosted_registry_routetermination }}"
  41. host: "{{ openshift_hosted_registry_routehost | default(omit, true) }}"