Yes, you can re-use the same volume by not deleting the PVC.  The lifecycle
of a claim is independent of a pod's lifecycle.  You can create and delete
pods all day long using the same claim, but once you delete the claim, you
are relinquishing your hold on that volume, hence it is Released.

Mark

On Mon, Feb 1, 2016 at 8:08 AM, Alejandro Nieto Boza <[email protected]>
wrote:

> Hi,
>
> I create the following NFS PV in Openshift:
>
> apiVersion: "v1"
> kind: "PersistentVolume"
> metadata:
>   name: "pv01"
> spec:
>   capacity:
>     storage: "5Gi"
>   accessModes:
>     - "ReadWriteOnce"
>   nfs:
>     path: "/mnt"
>    server: "..."
>
> Then, I create a pod with mysql-persistent-template and the pod uses
> correctly the PV and the PV appears "Bound".
> Now I delete the pod and the PVC. When I delete the PVC the PV appears
> "Released".
> Now I want to launch the same template mysql-persistent and I want the new
> pod uses the same PV but the PV doesn't appear "Available" again.
> Is there any way to use the same volume?
>
> Thanks.
>
> _______________________________________________
> users mailing list
> [email protected]
> http://lists.openshift.redhat.com/openshiftmm/listinfo/users
>
>
_______________________________________________
users mailing list
[email protected]
http://lists.openshift.redhat.com/openshiftmm/listinfo/users

Reply via email to