reencrypt.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. - name: Validate route termination configuration
  3. fail:
  4. msg: >
  5. When 'openshift_hosted_registry_routetermination' is 'reencrypt', you must
  6. provide certificate files with 'openshift_hosted_registry_routecertificates'
  7. when: ('certfile' not in openshift_hosted_registry_routecertificates) or
  8. ('keyfile' not in openshift_hosted_registry_routecertificates) or
  9. ('cafile' not in openshift_hosted_registry_routecertificates)
  10. - name: Configure self-signed certificate file paths
  11. set_fact:
  12. docker_registry_cert_path: "/etc/origin/master/registry.crt"
  13. docker_registry_key_path: "/etc/origin/master/registry.key"
  14. docker_registry_cacert_path: "/etc/origin/master/ca.crt"
  15. docker_registry_self_signed: true
  16. - name: Retrieve provided certificate files
  17. copy:
  18. backup: True
  19. dest: "/etc/origin/master/named_certificates/{{ item.value | basename }}"
  20. src: "{{ item.value }}"
  21. when: item.key in ['certfile', 'keyfile', 'cafile'] and item.value
  22. with_dict: "{{ openshift_hosted_registry_routecertificates }}"
  23. # Encrypt with the provided certificate and provide the dest_cacert for the
  24. # self-signed certificate at the endpoint
  25. - name: Configure a reencrypt route for docker-registry
  26. oc_route:
  27. name: docker-registry
  28. namespace: "{{ openshift_hosted_registry_namespace }}"
  29. service_name: docker-registry
  30. tls_termination: "{{ openshift_hosted_registry_routetermination }}"
  31. host: "{{ openshift_hosted_registry_routehost | default(omit, true) }}"
  32. cert_path: "/etc/origin/master/named_certificates/{{ openshift_hosted_registry_routecertificates['certfile'] | basename }}"
  33. key_path: "/etc/origin/master/named_certificates/{{ openshift_hosted_registry_routecertificates['keyfile'] | basename }}"
  34. cacert_path: "/etc/origin/master/named_certificates/{{ openshift_hosted_registry_routecertificates['cafile'] | basename }}"
  35. dest_cacert_path: "/etc/origin/master/ca.crt"