registry.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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: openshift_hosted_registry_nodes_json
  8. changed_when: false
  9. when: openshift.hosted.registry.replicas | default(none) is none
  10. - set_fact:
  11. replicas: "{{ openshift.hosted.registry.replicas | default((openshift_hosted_registry_nodes_json.stdout | from_json)['items'] | length) }}"
  12. - name: Create OpenShift registry
  13. command: >
  14. {{ openshift.common.admin_binary }} registry --create
  15. --config={{ openshift_hosted_kubeconfig }}
  16. {% if replicas > 1 -%}
  17. --replicas={{ replicas }}
  18. {% endif -%}
  19. --namespace={{ openshift.hosted.registry.namespace | default('default') }}
  20. --service-account=registry
  21. {% if openshift.hosted.registry.selector | default(none) is not none -%}
  22. --selector='{{ openshift.hosted.registry.selector }}'
  23. {% endif -%}
  24. {% if not openshift.common.version_gte_3_2_or_1_2 | bool -%}
  25. --credentials={{ openshift_master_config_dir }}/openshift-registry.kubeconfig
  26. {% endif -%}
  27. {% if openshift.hosted.registry.registryurl | default(none) is not none -%}
  28. --images='{{ openshift.hosted.registry.registryurl }}'
  29. {% endif -%}
  30. register: openshift_hosted_registry_results
  31. changed_when: "'service exists' not in openshift_hosted_registry_results.stdout"
  32. 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"
  33. - include: storage/object_storage.yml
  34. when: openshift.hosted.registry.storage.kind | default(none) == 'object'
  35. - include: storage/persistent_volume.yml
  36. when: openshift.hosted.registry.storage.kind | default(none) in ['nfs', 'openstack']