You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The command structure requires correction.
- Current Look:
- You can view the name of a PVC that is bound to a PV by running the following command
~~~
$ oc get pv <pv-name> -o jsonpath='{.spec.claimRef.name}'
~~~
Last phase transition time
The LastPhaseTransitionTime field has a timestamp that updates every time a persistent volume (PV) transitions to a different phase (pv.Status.Phase). To find the time of the last phase transition for a PV, run the following command:
~~~
$ oc get pv <pv-name> -o json | jq '.status.lastPhaseTransitionTime' (1)
~~~
Updated Look:
0 commit comments