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

replication_controller_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: b7f2f7bd5216473389a540e3a231f8cbea71d79d (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
55
56
57
58
59
60
61
62
63
64
65
66
{
    "kind": "ReplicationControllerList",
    "apiVersion": "v1",
    "metadata": {
        "selfLink": "/api/v1/namespaces/default/replicationcontrollers",
        "resourceVersion": "1636"
    },
    "items": [
        {
            "metadata": {
                "name": "redis-master-controller",
                "namespace": "default",
                "selfLink": "/api/v1/namespaces/default/replicationcontrollers/redis-master-controller?namespace=default",
                "uid": "108eb547-cefa-11e4-ac24-3c970e4a436a",
                "resourceVersion": "1631",
                "creationTimestamp": "2015-03-20T14:10:14+02:00",
                "labels": {
                    "name": "redis-master"
                }
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "name": "redis-master"
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "redis",
                            "name": "redis-master"
                        }
                    },
                    "spec": {
                        "volumes": null,
                        "containers": [
                            {
                                "name": "redis-master",
                                "image": "dockerfile/redis",
                                "ports": [
                                    {
                                        "containerPort": 6379,
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "imagePullPolicy": "IfNotPresent",
                                "securityContext": {
                                    "capabilities": {}
                                }
                            }
                        ],
                        "restartPolicy": {
                            "always": {}
                        },
                        "dnsPolicy": "ClusterFirst"
                    }
                }
            },
            "status": {
                "replicas": 1
            }
        }
    ]
}