secure.yml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. ---
  2. - name: Configure facts for docker-registry
  3. set_fact:
  4. openshift_hosted_registry_routecertificates: "{{ ('routecertificates' in openshift.hosted.registry.keys()) | ternary(openshift_hosted_registry_routecertificates, {}) }}"
  5. openshift_hosted_registry_routehost: "{{ ('routehost' in openshift.hosted.registry.keys()) | ternary(openshift.hosted.registry.routehost, False) }}"
  6. openshift_hosted_registry_routetermination: "{{ ('routetermination' in openshift.hosted.registry.keys()) | ternary(openshift.hosted.registry.routetermination, 'passthrough') }}"
  7. - name: Include reencrypt route configuration
  8. include: secure/reencrypt.yml
  9. static: no
  10. when: openshift_hosted_registry_routetermination == 'reencrypt'
  11. - name: Include passthrough route configuration
  12. include: secure/passthrough.yml
  13. static: no
  14. when: openshift_hosted_registry_routetermination == 'passthrough'
  15. - name: Fetch the docker-registry route
  16. oc_route:
  17. name: docker-registry
  18. namespace: default
  19. state: list
  20. register: docker_registry_route
  21. - name: Retrieve registry service for the clusterip
  22. oc_service:
  23. namespace: "{{ openshift_hosted_registry_namespace }}"
  24. name: docker-registry
  25. state: list
  26. register: docker_registry_service
  27. - name: Generate self-signed docker-registry certificates
  28. oc_adm_ca_server_cert:
  29. signer_cert: "{{ openshift_master_config_dir }}/ca.crt"
  30. signer_key: "{{ openshift_master_config_dir }}/ca.key"
  31. signer_serial: "{{ openshift_master_config_dir }}/ca.serial.txt"
  32. hostnames:
  33. - "{{ docker_registry_service.results.clusterip }}"
  34. - "{{ docker_registry_route.results[0].spec.host }}"
  35. - "{{ openshift_hosted_registry_name }}.default.svc"
  36. - "{{ openshift_hosted_registry_name }}.default.svc.{{ openshift_cluster_domain }}"
  37. - "{{ openshift_hosted_registry_routehost }}"
  38. cert: "{{ docker_registry_cert_path }}"
  39. key: "{{ docker_registry_key_path }}"
  40. expire_days: "{{ openshift_hosted_registry_cert_expire_days }}"
  41. register: registry_self_cert
  42. when: docker_registry_self_signed
  43. # Setting up REGISTRY_HTTP_TLS_CLIENTCAS as the cacert doesn't seem to work.
  44. # If we need to set up a cacert, bundle it with the cert.
  45. - when: docker_registry_cacert_path is defined
  46. block:
  47. - name: Retrieve certificate files to generate certificate bundle
  48. slurp:
  49. src: "{{ item }}"
  50. with_items:
  51. - "{{ docker_registry_cert_path }}"
  52. - "{{ docker_registry_cacert_path }}"
  53. register: certificate_files
  54. - name: Generate certificate bundle
  55. copy:
  56. content: "{{ certificate_files.results | map(attribute='content') | map('b64decode') | join('') }}"
  57. dest: "{{ openshift_master_config_dir }}/named_certificates/docker-registry.pem"
  58. - name: Reset the certificate path to use the bundle
  59. set_fact:
  60. docker_registry_cert_path: "{{ openshift_master_config_dir }}/named_certificates/docker-registry.pem"
  61. - name: Create the secret for the registry certificates
  62. oc_secret:
  63. name: registry-certificates
  64. namespace: "{{ openshift_hosted_registry_namespace }}"
  65. files:
  66. - name: registry.crt
  67. path: "{{ docker_registry_cert_path }}"
  68. - name: registry.key
  69. path: "{{ docker_registry_key_path }}"
  70. register: create_registry_certificates_secret_out
  71. - name: Add the secret to the registry's pod service accounts
  72. oc_serviceaccount_secret:
  73. service_account: "{{ item }}"
  74. secret: registry-certificates
  75. namespace: "{{ openshift_hosted_registry_namespace }}"
  76. with_items:
  77. - registry
  78. - default
  79. - name: Set facts for secure registry
  80. set_fact:
  81. registry_secure_volume_mounts:
  82. - name: registry-certificates
  83. path: /etc/secrets
  84. type: secret
  85. secret_name: registry-certificates
  86. registry_secure_env_vars:
  87. REGISTRY_HTTP_TLS_CERTIFICATE: /etc/secrets/registry.crt
  88. REGISTRY_HTTP_TLS_KEY: /etc/secrets/registry.key
  89. registry_secure_edits:
  90. - key: spec.template.spec.containers[0].livenessProbe.httpGet.scheme
  91. value: HTTPS
  92. action: put
  93. - key: spec.template.spec.containers[0].readinessProbe.httpGet.scheme
  94. value: HTTPS
  95. action: put
  96. - name: Detect if there has been certificate changes
  97. set_fact:
  98. registry_cert_changed: true
  99. when: ( registry_self_cert is defined and registry_self_cert.changed ) or
  100. create_registry_certificates_secret_out.changed
  101. - name: Update openshift_hosted facts with secure registry variables
  102. set_fact:
  103. openshift_hosted_registry_volumes: "{{ openshift_hosted_registry_volumes | union(registry_secure_volume_mounts) }}"
  104. openshift_hosted_registry_env_vars: "{{ openshift_hosted_registry_env_vars | combine(registry_secure_env_vars) }}"
  105. openshift_hosted_registry_edits: "{{ openshift_hosted_registry_edits | union(registry_secure_edits) }}"
  106. openshift_hosted_registry_force: "{{ openshift_hosted_registry_force | union([registry_cert_changed | default(false)]) }}"