-
Feature Request
-
Resolution: Done
-
Major
-
4.4.0.Alpha1
-
devex #118 July 2016
-
16
We should be able to display Persistent Volume (aka Storage) informations in the OpenShift properties.
Need to define the extent of the informations to display. At the very least, it should be the same as what the OpenShift Console provides.
Using persistent volumes:
- https://blog.openshift.com/experimenting-with-persistent-volumes/
- https://docs.openshift.com/enterprise/3.0/dev_guide/persistent_volumes.html
Briefly: to see how persistent volume claims work, add the following json as a resource to the project:
Persistent Volume Claim Object Definition
{ "apiVersion": "v1", "kind": "PersistentVolumeClaim", "metadata": { "name": "claim1" }, "spec": { "accessModes": [ "ReadWriteOnce" ], "resources": { "requests": { "storage": "1Gi" } } } }
- is related to
-
JBIDE-22727 Openshift resources managed by explorer and watcher are declared in both place leading to inconsistency
- Open
- relates to
-
OSJC-266 PVC: add information about the volume the claim is bounded to
- Resolved