[jbosstools-issues] [JBoss JIRA] (JBIDE-22433) Properties: Add Storage tab

Dmitry Bocharov (JIRA) issues at jboss.org
Sun Jul 31 17:33:00 EDT 2016


     [ https://issues.jboss.org/browse/JBIDE-22433?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dmitry Bocharov updated JBIDE-22433:
------------------------------------
    Description: 
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:
{code:title=Persistent Volume Claim Object Definition}
{
    "apiVersion": "v1",
    "kind": "PersistentVolumeClaim",
    "metadata": {
        "name": "claim1"
    },
    "spec": {
        "accessModes": [ "ReadWriteOnce" ],
        "resources": {
            "requests": {
                "storage": "1Gi"
            }
        }
    }
}
{code}

  was:
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:
{code:title=Persistent Volume Claim Object Definition}
{
    "apiVersion": "v1",
    "kind": "PersistentVolumeClaim",
    "metadata": {
        "name": "claim1"
    },
    "spec": {
        "accessModes": [ "ReadWriteOnce" ],
        "resources": {
            "requests": {
                "storage": "5Gi"
            }
        }
    }
}
{code}



> Properties: Add Storage tab
> ---------------------------
>
>                 Key: JBIDE-22433
>                 URL: https://issues.jboss.org/browse/JBIDE-22433
>             Project: Tools (JBoss Tools)
>          Issue Type: Feature Request
>          Components: openshift
>    Affects Versions: 4.4.0.Alpha1
>            Reporter: Fred Bricon
>            Assignee: Dmitry Bocharov
>              Labels: new_and_noteworthy, openshift_v3, properties
>             Fix For: 4.4.1.AM3
>
>         Attachments: storage from web console.png
>
>
> 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:
> {code:title=Persistent Volume Claim Object Definition}
> {
>     "apiVersion": "v1",
>     "kind": "PersistentVolumeClaim",
>     "metadata": {
>         "name": "claim1"
>     },
>     "spec": {
>         "accessModes": [ "ReadWriteOnce" ],
>         "resources": {
>             "requests": {
>                 "storage": "1Gi"
>             }
>         }
>     }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.11#64026)


More information about the jbosstools-issues mailing list