secure.yml 4.3 KB

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