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

resource_quota_list.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: 371f3feb649e516c53d1dbe2187d6302f33bd9be (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
  "kind": "ResourceQuotaList",
  "apiVersion": "v1",
  "metadata": {
    "selfLink": "/api/v1/namespaces/quota-example/resourcequotas/",
    "resourceVersion": "102452"
  },
  "items": [
    {
      "metadata": {
        "name": "quota",
        "namespace": "quota-example",
        "selfLink": "/api/v1/namespaces/quota-example/resourcequotas/quota",
        "uid": "ab9f24a4-3c43-11e5-8214-0aaeec44370e",
        "resourceVersion": "12919",
        "creationTimestamp": "2015-08-06T14:01:44Z"
      },
      "spec": {
        "hard": {
          "cpu": "20",
          "memory": "1Gi",
          "persistentvolumeclaims": "10",
          "pods": "10",
          "replicationcontrollers": "20",
          "resourcequotas": "1",
          "secrets": "10",
          "services": "5"
        }
      },
      "status": {
        "hard": {
          "cpu": "20",
          "memory": "1Gi",
          "persistentvolumeclaims": "10",
          "pods": "10",
          "replicationcontrollers": "20",
          "resourcequotas": "1",
          "secrets": "10",
          "services": "5"
        },
        "used": {
          "cpu": "0",
          "memory": "0",
          "persistentvolumeclaims": "0",
          "pods": "0",
          "replicationcontrollers": "1",
          "resourcequotas": "1",
          "secrets": "9",
          "services": "0"
        }
      }
    }
  ]
}