registry.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 defined, default should be the number of registry nodes, otherwise just 1:
  19. - set_fact:
  20. l_default_replicas: "{{ l_node_count if openshift.hosted.registry.storage.kind | default(none) is not none else 1 }}"
  21. when: l_node_count | int > 0
  22. - set_fact:
  23. replicas: "{{ openshift.hosted.registry.replicas | default(l_default_replicas) }}"
  24. - name: Create OpenShift registry
  25. command: >
  26. {{ openshift.common.admin_binary }} registry --create
  27. --config={{ openshift_hosted_kubeconfig }}
  28. {% if replicas > 1 -%}
  29. --replicas={{ replicas }}
  30. {% endif -%}
  31. --namespace={{ openshift.hosted.registry.namespace | default('default') }}
  32. --service-account=registry
  33. {% if openshift.hosted.registry.selector | default(none) is not none -%}
  34. --selector='{{ openshift.hosted.registry.selector }}'
  35. {% endif -%}
  36. {% if not openshift.common.version_gte_3_2_or_1_2 | bool -%}
  37. --credentials={{ openshift_master_config_dir }}/openshift-registry.kubeconfig
  38. {% endif -%}
  39. {% if openshift.hosted.registry.registryurl | default(none) is not none -%}
  40. --images='{{ openshift.hosted.registry.registryurl }}'
  41. {% endif -%}
  42. register: openshift_hosted_registry_results
  43. changed_when: "'service exists' not in openshift_hosted_registry_results.stdout"
  44. 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"
  45. when: replicas | int > 0
  46. - include: storage/object_storage.yml
  47. static: no
  48. when: replicas | int > 0 and openshift.hosted.registry.storage.kind | default(none) == 'object'
  49. - include: storage/persistent_volume.yml
  50. static: no
  51. when: replicas | int > 0 and openshift.hosted.registry.storage.kind | default(none) in ['nfs', 'openstack']