persistent_volume.yml 1.0 KB

1234567891011121314151617181920212223242526
  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: >
  6. {{ openshift.common.client_binary }}
  7. --config={{ openshift_hosted_kubeconfig }}
  8. --namespace={{ openshift.hosted.registry.namespace | default('default') }}
  9. get -o template dc/docker-registry --template=\\{\\{.spec.template.spec.volumes\\}\\} --output-version=v1
  10. changed_when: false
  11. failed_when: false
  12. register: registry_volumes_output
  13. - set_fact:
  14. volume_attached: "{{ registry_volume_claim in (registry_volumes_output).stdout | default(['']) }}"
  15. - name: Add volume to dc/docker-registry
  16. command: >
  17. {{ openshift.common.client_binary }}
  18. --config={{ openshift_hosted_kubeconfig }}
  19. --namespace={{ openshift.hosted.registry.namespace | default('default') }}
  20. volume dc/docker-registry
  21. --add --overwrite -t persistentVolumeClaim --claim-name={{ registry_volume_claim }}
  22. --name=registry-storage
  23. when: not volume_attached | bool