persistent_volume.yml 798 B

12345678910111213141516171819
  1. ---
  2. - set_fact:
  3. registry_volume_claim: "{{ openshift.hosted.registry.storage.volume.name }}-claim"
  4. - name: Determine if volume is already attached to dc/docker-registry
  5. command: "{{ openshift.common.client_binary }} get -o template dc/docker-registry --template=\\{\\{.spec.template.spec.volumes\\}\\} --output-version=v1"
  6. changed_when: false
  7. failed_when: false
  8. register: registry_volumes_output
  9. - set_fact:
  10. volume_attached: "{{ registry_volume_claim in (registry_volumes_output).stdout | default(['']) }}"
  11. - name: Add volume to dc/docker-registry
  12. command: >
  13. {{ openshift.common.client_binary }} volume dc/docker-registry
  14. --add --overwrite -t persistentVolumeClaim --claim-name={{ registry_volume_claim }}
  15. --name=registry-storage
  16. when: not volume_attached | bool