registry.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ---
  2. - name: Retrieve list of openshift nodes matching registry selector
  3. command: >
  4. {{ openshift.common.client_binary }} --api-version='v1' -o json
  5. get nodes -n default --config={{ openshift_hosted_kubeconfig }}
  6. --selector={{ openshift.hosted.registry.selector | default('') }}
  7. register: registry_nodes_json
  8. changed_when: false
  9. when: openshift.hosted.registry.replicas | default(none) is none
  10. - set_fact:
  11. l_node_count: "{{ (registry_nodes_json.stdout | default('{\"items\":[]}') | from_json)['items'] | length }}"
  12. # Determine the default number of registry/router replicas to use if no count
  13. # has been specified.
  14. # If no registry nodes defined, the default should be 0.
  15. - set_fact:
  16. l_default_replicas: 0
  17. when: l_node_count | int == 0
  18. # If registry nodes are defined and the registry storage kind is
  19. # defined, default should be the number of registry nodes, otherwise
  20. # just 1:
  21. - set_fact:
  22. l_default_replicas: "{{ l_node_count if openshift.hosted.registry.storage.kind | default(none) is not none else 1 }}"
  23. when: l_node_count | int > 0
  24. - set_fact:
  25. replicas: "{{ openshift.hosted.registry.replicas | default(l_default_replicas) }}"
  26. - name: Create OpenShift registry
  27. command: >
  28. {{ openshift.common.admin_binary }} registry --create
  29. --config={{ openshift_hosted_kubeconfig }}
  30. {% if replicas > 1 -%}
  31. --replicas={{ replicas }}
  32. {% endif -%}
  33. --namespace={{ openshift.hosted.registry.namespace | default('default') }}
  34. --service-account=registry
  35. {% if openshift.hosted.registry.selector | default(none) is not none -%}
  36. --selector='{{ openshift.hosted.registry.selector }}'
  37. {% endif -%}
  38. {% if not openshift.common.version_gte_3_2_or_1_2 | bool -%}
  39. --credentials={{ openshift_master_config_dir }}/openshift-registry.kubeconfig
  40. {% endif -%}
  41. {% if openshift.hosted.registry.registryurl | default(none) is not none -%}
  42. --images='{{ openshift.hosted.registry.registryurl }}'
  43. {% endif -%}
  44. register: openshift_hosted_registry_results
  45. changed_when: "'service exists' not in openshift_hosted_registry_results.stdout"
  46. failed_when: "openshift_hosted_registry_results.rc != 0 and 'service exists' not in openshift_hosted_registry_results.stdout and 'deployment_config' not in openshift_hosted_registry_results.stderr and 'service' not in openshift_hosted_registry_results.stderr"
  47. when: replicas | int > 0
  48. - include: secure.yml
  49. static: no
  50. when: replicas | int > 0
  51. - include: storage/object_storage.yml
  52. static: no
  53. when: replicas | int > 0 and openshift.hosted.registry.storage.kind | default(none) == 'object'
  54. - include: storage/persistent_volume.yml
  55. static: no
  56. when: replicas | int > 0 and openshift.hosted.registry.storage.kind | default(none) in ['nfs', 'openstack']