hostpath.yml 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. ---
  2. - name: Get registry DeploymentConfig
  3. oc_obj:
  4. namespace: "{{ openshift_hosted_registry_namespace }}"
  5. state: list
  6. kind: dc
  7. name: "{{ openshift_hosted_registry_name }}"
  8. register: registry_dc
  9. - name: Wait for registry pods
  10. oc_obj:
  11. namespace: "{{ openshift_hosted_registry_namespace }}"
  12. state: list
  13. kind: pod
  14. selector: "{% for label, value in registry_dc.results.results[0].spec.selector.items() %}{{ label }}={{ value }}{% if not loop.last %},{% endif %}{% endfor %}"
  15. register: registry_pods
  16. until:
  17. - "registry_pods.results.results[0]['items'] | count > 0"
  18. # There must be as many matching pods with 'Ready' status True as there are expected replicas
  19. - "registry_pods.results.results[0]['items'] | lib_utils_oo_collect(attribute='status.conditions') | lib_utils_oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == openshift_hosted_registry_replicas | int"
  20. delay: 10
  21. retries: 60
  22. # https://docs.openshift.com/container-platform/3.9/install_config/registry/deploy_registry_existing_clusters.html#registry-non-production-use
  23. - name: Ensure permissions on the hostpath match the pod configuration
  24. file:
  25. path: "{{ openshift_hosted_registry_storage_hostpath_path }}"
  26. state: directory
  27. owner: "{{ registry_pods.results.results[0]['items'][0].spec.containers[0].securityContext.runAsUser }}"
  28. group: "{{ registry_pods.results.results[0]['items'][0].spec.securityContext.fsGroup }}"
  29. mode: "2750"