Welcome to mirror list, hosted at ThFree Co, Russian Federation.

persistent_volume_claim.json « json « test « kubeclient « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65154685348fa26d5db34e536a8ff862bb40b2de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "kind": "PersistentVolumeClaim",
  "apiVersion": "v1",
  "metadata": {
    "name": "myclaim-1",
    "namespace": "default",
    "selfLink": "/api/v1/namespaces/default/persistentvolumeclaims/myclaim-1",
    "uid": "d47384a3-4b38-11e5-8d27-28d2447dcefe",
    "resourceVersion": "1584",
    "creationTimestamp": "2015-08-25T14:51:55Z"
  },
  "spec": {
    "accessModes": [
      "ReadWriteOnce"
    ],
    "resources": {
      "requests": {
        "storage": "3Gi"
      }
    },
    "volumeName": "pv0001"
  },
  "status": {
    "phase": "Bound",
    "accessModes": [
      "ReadWriteOnce"
    ],
    "capacity": {
      "storage": "10Gi"
    }
  }
}