From 90d22c48b47098daded37c6092754cc348694212 Mon Sep 17 00:00:00 2001 From: BC Broussard Date: Wed, 20 May 2015 22:31:26 -0700 Subject: [PATCH] Add v1beta3 api call to web ui Update mocks to v1beta3 --- pkg/ui/datafile.go | 12970 +--------------- www/app/assets/css/app.css | 3 + www/app/assets/js/app.js | 372 +- www/app/shared/assets/sampleData1.json | 11993 -------------- .../dashboard/js/modules/services/podsMock.js | 132 +- .../services/replicationControllersMock.js | 69 +- .../js/modules/services/servicesMock.js | 120 +- .../components/dashboard/less/dashboard.less | 4 + www/master/gulpfile.js | 1 - www/master/shared/assets/.gitkeep | 0 www/master/shared/assets/sampleData1.json | 11993 -------------- www/master/shared/config/development.json | 1 + www/master/shared/config/generated-config.js | 1 + .../shared/js/modules/services/cAdvisor.js | 2 +- .../js/modules/services/k8sApiService.js | 48 + 15 files changed, 1150 insertions(+), 36559 deletions(-) delete mode 100644 www/app/shared/assets/sampleData1.json create mode 100644 www/master/shared/assets/.gitkeep delete mode 100644 www/master/shared/assets/sampleData1.json diff --git a/pkg/ui/datafile.go b/pkg/ui/datafile.go index 56ee94a728be1..023bb3f7db2d7 100644 --- a/pkg/ui/datafile.go +++ b/pkg/ui/datafile.go @@ -1567,6 +1567,9 @@ md-toolbar h1 { .dashboard .detail .containerTable td { padding-right: 20px; } +.dashboard .align-top tbody { + vertical-align: top; +} `) func www_app_assets_css_app_css_bytes() ([]byte, error) { @@ -1579,7 +1582,7 @@ func www_app_assets_css_app_css() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/assets/css/app.css", size: 37053, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/assets/css/app.css", size: 37108, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1958,6 +1961,7 @@ angular.module("kubernetesApp.config", []) .constant("ENV", { "/": { "k8sApiServer": "/api/v1beta2", + "k8sApiv1beta3Server": "/api/v1beta3", "k8sDataServer": "/cluster", "k8sDataPollMinIntervalSec": 10, "k8sDataPollMaxIntervalSec": 120, @@ -2019,7 +2023,7 @@ app.controller('TabCtrl', [ .service('cAdvisorService', ["$http", "$q", "ENV", function($http, $q, ENV) { var _baseUrl = function(minionIp) { var minionPort = ENV['/']['cAdvisorPort'] || "8081"; - var proxy = ENV['/']['cAdvisorProxy'] || "/api/v1beta2/proxy/nodes/"; + var proxy = ENV['/']['cAdvisorProxy'] || "/api/v1beta3/proxy/nodes/"; return proxy + minionIp + ':' + minionPort + '/api/v1.0/'; }; @@ -2251,6 +2255,54 @@ app.provider('k8sApi', } }]); +app.provider('k8sv1Beta3Api', + function() { + + var urlBase = ''; + var _namespace = 'default'; + + this.setUrlBase = function(value) { urlBase = value; }; + + this.setNamespace = function(value) { _namespace = value; }; + this.getNamespace = function() { return _namespace; }; + + var _get = function($http, baseUrl, query) { + var _fullUrl = baseUrl; + + if (query !== undefined) { + _fullUrl += '/' + query; + } + + return $http.get(_fullUrl); + }; + + this.$get = ["$http", "$q", function($http, $q) { + var api = {}; + + api.getUrlBase = function() { return urlBase + '/namespaces/' + _namespace; }; + + api.getPods = function(query) { return _get($http, api.getUrlBase() + '/pods', query); }; + + api.getMinions = function(query) { return _get($http, urlBase + '/nodes', query); }; + + api.getServices = function(query) { return _get($http, api.getUrlBase() + '/services', query); }; + + api.getReplicationControllers = function(query) { + return _get($http, api.getUrlBase() + '/replicationcontrollers', query) + }; + + api.getEvents = function(query) { return _get($http, api.getUrlBase() + '/events', query); }; + + return api; + }]; + }) + .config(["k8sv1Beta3ApiProvider", "ENV", function(k8sv1Beta3ApiProvider, ENV) { + if (ENV && ENV['/'] && ENV['/']['k8sApiv1beta3Server']) { + var proxy = ENV['/']['cAdvisorProxy'] || ''; + k8sv1Beta3ApiProvider.setUrlBase(proxy + ENV['/']['k8sApiv1beta3Server']); + } + }]); + (function() { "use strict"; @@ -4007,57 +4059,93 @@ angular.module('kubernetesApp.components.dashboard') */ function PodDataService($q) { var pods = { - "kind": "PodList", - "creationTimestamp": null, - "selfLink": "/api/v1beta1/pods", - "resourceVersion": 166552, - "apiVersion": "v1beta1", - "items": [{ - "id": "hello", - "uid": "0fe3644e-ab53-11e4-8ae8-061695c59fcf", - "creationTimestamp": "2015-02-03T03:16:36Z", - "selfLink": "/api/v1beta1/pods/hello?namespace=default", - "resourceVersion": 466, + "kind": "Pod", + "apiVersion": "v1beta3", + "metadata": { + "name": "redis-master-c0r1n", + "generateName": "redis-master-", "namespace": "default", - "labels": {"environment": "testing", "name": "hello"}, - "desiredState": { - "manifest": { - "version": "v1beta2", - "id": "", - "volumes": null, - "containers": [{ - "name": "hello", - "image": "quay.io/kelseyhightower/hello", - "ports": [{"hostPort": 80, "containerPort": 80, "protocol": "TCP"}], - "imagePullPolicy": "PullIfNotPresent" - }], - "restartPolicy": {"always": {}}, - "dnsPolicy": "ClusterFirst" - } + "selfLink": "/api/v1beta3/namespaces/default/pods/redis-master-c0r1n", + "uid": "f12ddfaf-ff77-11e4-8f2d-080027213276", + "resourceVersion": "39", + "creationTimestamp": "2015-05-21T05:12:14Z", + "labels": { + "name": "redis-master" }, - "currentState": { - "manifest": {"version": "", "id": "", "volumes": null, "containers": null, "restartPolicy": {}}, - "status": "Running", - "host": "172.31.12.204", - "podIP": "10.244.73.2", - "info": { - "hello": { - "state": {"running": {"startedAt": "2015-02-03T03:16:51Z"}}, - "restartCount": 0, - "image": "quay.io/kelseyhightower/hello", - "containerID": "docker://96ade8ff30a44c4489969eaf343a7899317671b07a9766ecd0963e9b41501256" - }, - "net": { - "state": {"running": {"startedAt": "2015-02-03T03:16:41Z"}}, - "restartCount": 0, - "podIP": "10.244.73.2", - "image": "kubernetes/pause:latest", - "containerID": "docker://93d32603cafbff7165dadb1d4527899c24246bca2f5e6770b8297fd3721b272c" - } - } + "annotations": { + "kubernetes.io/created-by": "{\"kind\":\"SerializedReference\",\"apiVersion\":\"v1beta3\",\"reference\":{\"kind\":\"ReplicationController\",\"namespace\":\"default\",\"name\":\"redis-master\",\"uid\":\"f12969e0-ff77-11e4-8f2d-080027213276\",\"apiVersion\":\"v1beta3\",\"resourceVersion\":\"26\"}}" } - }] - }; + }, + "spec": { + "volumes": [ + { + "name": "default-token-zb4rq", + "secret": { + "secretName": "default-token-zb4rq" + } + } + ], + "containers": [ + { + "name": "master", + "image": "redis", + "ports": [ + { + "containerPort": 6379, + "protocol": "TCP" + } + ], + "resources": {}, + "volumeMounts": [ + { + "name": "default-token-zb4rq", + "readOnly": true, + "mountPath": "/var/run/secrets/kubernetes.io/serviceaccount" + } + ], + "terminationMessagePath": "/dev/termination-log", + "imagePullPolicy": "IfNotPresent", + "capabilities": {}, + "securityContext": { + "capabilities": {}, + "privileged": false + } + } + ], + "restartPolicy": "Always", + "dnsPolicy": "ClusterFirst", + "serviceAccount": "default", + "host": "127.0.0.1" + }, + "status": { + "phase": "Running", + "Condition": [ + { + "type": "Ready", + "status": "True" + } + ], + "hostIP": "127.0.0.1", + "podIP": "172.17.0.1", + "startTime": "2015-05-21T05:12:14Z", + "containerStatuses": [ + { + "name": "master", + "state": { + "running": { + "startedAt": "2015-05-21T05:12:14Z" + } + }, + "lastState": {}, + "ready": true, + "restartCount": 0, + "image": "redis", + "imageID": "docker://95af5842ddb9b03f7c6ec7601e65924cec516fcedd7e590ae31660057085cf67", + "containerID": "docker://ae2a1e0a91a8b1015191a0b8e2ce8c55a86fb1a9a2b1e8e3b29430c9d93c8c09" + } + ] + } +}; // Uses promises return { @@ -4086,13 +4174,68 @@ angular.module('kubernetesApp.components.dashboard') */ function ReplicationControllerDataService($q) { var replicationControllers = { - "kind": "ReplicationControllerList", - "creationTimestamp": null, - "selfLink": "/api/v1beta1/replicationControllers", - "resourceVersion": 166552, - "apiVersion": "v1beta1", - "items": [] - }; + "kind": "List", + "apiVersion": "v1beta3", + "metadata": {}, + "items": [ + { + "kind": "ReplicationController", + "apiVersion": "v1beta3", + "metadata": { + "name": "redis-master", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/replicationcontrollers/redis-master", + "uid": "f12969e0-ff77-11e4-8f2d-080027213276", + "resourceVersion": "28", + "creationTimestamp": "2015-05-21T05:12:14Z", + "labels": { + "name": "redis-master" + } + }, + "spec": { + "replicas": 1, + "selector": { + "name": "redis-master" + }, + "template": { + "metadata": { + "creationTimestamp": null, + "labels": { + "name": "redis-master" + } + }, + "spec": { + "containers": [ + { + "name": "master", + "image": "redis", + "ports": [ + { + "containerPort": 6379, + "protocol": "TCP" + } + ], + "resources": {}, + "terminationMessagePath": "/dev/termination-log", + "imagePullPolicy": "IfNotPresent", + "capabilities": {}, + "securityContext": { + "capabilities": {}, + "privileged": false + } + } + ], + "restartPolicy": "Always", + "dnsPolicy": "ClusterFirst", + "serviceAccount": "" + } + } + }, + "status": { + "replicas": 1 + } + } + ]}; // Uses promises return { @@ -4120,44 +4263,96 @@ angular.module('kubernetesApp.components.dashboard') */ function ServiceDataService($q) { var services = { - "kind": "ServiceList", - "creationTimestamp": null, - "selfLink": "/api/v1beta1/services", - "resourceVersion": 166552, - "apiVersion": "v1beta1", - "items": [ + "kind": "List", + "apiVersion": "v1beta3", + "metadata": {}, + "items": [ + { + "kind": "Service", + "apiVersion": "v1beta3", + "metadata": { + "name": "kubernetes", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/services/kubernetes", + "resourceVersion": "6", + "creationTimestamp": null, + "labels": { + "component": "apiserver", + "provider": "kubernetes" + } + }, + "spec": { + "ports": [ + { + "protocol": "TCP", + "port": 443, + "targetPort": 443 + } + ], + "portalIP": "10.0.0.2", + "sessionAffinity": "None" + }, + "status": {} + }, { - "id": "kubernetes", - "uid": "626dd08d-ab51-11e4-8ae8-061695c59fcf", - "creationTimestamp": "2015-02-03T03:04:36Z", - "selfLink": "/api/v1beta1/services/kubernetes?namespace=default", - "resourceVersion": 11, - "namespace": "default", - "port": 443, - "protocol": "TCP", - "labels": {"component": "apiserver", "provider": "kubernetes"}, - "selector": null, - "containerPort": 0, - "portalIP": "10.244.66.215", - "sessionAffinity": "None" + "kind": "Service", + "apiVersion": "v1beta3", + "metadata": { + "name": "kubernetes-ro", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/services/kubernetes-ro", + "resourceVersion": "8", + "creationTimestamp": null, + "labels": { + "component": "apiserver", + "provider": "kubernetes" + } + }, + "spec": { + "ports": [ + { + "protocol": "TCP", + "port": 80, + "targetPort": 80 + } + ], + "portalIP": "10.0.0.1", + "sessionAffinity": "None" + }, + "status": {} }, { - "id": "kubernetes-ro", - "uid": "626f9584-ab51-11e4-8ae8-061695c59fcf", - "creationTimestamp": "2015-02-03T03:04:36Z", - "selfLink": "/api/v1beta1/services/kubernetes-ro?namespace=default", - "resourceVersion": 12, - "namespace": "default", - "port": 80, - "protocol": "TCP", - "labels": {"component": "apiserver", "provider": "kubernetes"}, - "selector": null, - "containerPort": 0, - "portalIP": "10.244.182.142", - "sessionAffinity": "None" + "kind": "Service", + "apiVersion": "v1beta3", + "metadata": { + "name": "redis-master", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/services/redis-master", + "uid": "a6fde246-ff78-11e4-8f2d-080027213276", + "resourceVersion": "72", + "creationTimestamp": "2015-05-21T05:17:19Z", + "labels": { + "name": "redis-master" + } + }, + "spec": { + "ports": [ + { + "protocol": "TCP", + "port": 6379, + "targetPort": 6379 + } + ], + "selector": { + "name": "redis-master" + }, + "portalIP": "10.0.0.124", + "sessionAffinity": "None" + }, + "status": {} } - ] - }; + ] +}; // Uses promises return { @@ -4182,7 +4377,7 @@ func www_app_assets_js_app_js() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/assets/js/app.js", size: 79499, mode: os.FileMode(420), modTime: time.Unix(1431900597, 0)} + info := bindata_file_info{name: "www/app/assets/js/app.js", size: 85977, mode: os.FileMode(420), modTime: time.Unix(1432241313, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4224,7 +4419,7 @@ func www_app_assets_js_base_js() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/assets/js/base.js", size: 477058, mode: os.FileMode(420), modTime: time.Unix(1431900597, 0)} + info := bindata_file_info{name: "www/app/assets/js/base.js", size: 477058, mode: os.FileMode(420), modTime: time.Unix(1432241313, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4354,6 +4549,9 @@ Sub-directories of this path are watched for changes, but not directly imported. Content available under the [CC-By 3.0 license](http://creativecommons.org/licenses/by/3.0/) + + +[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/www/master/components/README.md?pixel)]() `) func www_app_components_readme_md_bytes() ([]byte, error) { @@ -4366,12 +4564,15 @@ func www_app_components_readme_md() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/README.md", size: 5196, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/README.md", size: 5312, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } var _www_app_components_dashboard_readme_md = []byte(`Dashboard Component for Kubernetes WebUI + + +[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/www/master/components/dashboard/README.md?pixel)]() `) func www_app_components_dashboard_readme_md_bytes() ([]byte, error) { @@ -4384,7 +4585,7 @@ func www_app_components_dashboard_readme_md() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/README.md", size: 41, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/README.md", size: 167, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4401,7 +4602,7 @@ func www_app_components_dashboard_img_icons_ic_arrow_drop_down_18px_svg() (*asse return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/img/icons/ic_arrow_drop_down_18px.svg", size: 114, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/img/icons/ic_arrow_drop_down_18px.svg", size: 114, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4422,7 +4623,7 @@ func www_app_components_dashboard_img_icons_ic_arrow_drop_down_24px_svg() (*asse return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/img/icons/ic_arrow_drop_down_24px.svg", size: 166, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/img/icons/ic_arrow_drop_down_24px.svg", size: 166, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4439,7 +4640,7 @@ func www_app_components_dashboard_img_icons_ic_close_18px_svg() (*asset, error) return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/img/icons/ic_close_18px.svg", size: 215, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/img/icons/ic_close_18px.svg", size: 215, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4456,7 +4657,7 @@ func www_app_components_dashboard_img_icons_ic_close_24px_svg() (*asset, error) return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/img/icons/ic_close_24px.svg", size: 202, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/img/icons/ic_close_24px.svg", size: 202, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4533,7 +4734,7 @@ func www_app_components_dashboard_manifest_json() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/manifest.json", size: 1725, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/manifest.json", size: 1725, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4550,7 +4751,7 @@ func www_app_components_dashboard_pages_footer_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/pages/footer.html", size: 7, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/pages/footer.html", size: 7, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4587,7 +4788,7 @@ func www_app_components_dashboard_pages_header_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/pages/header.html", size: 873, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/pages/header.html", size: 873, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4611,7 +4812,7 @@ func www_app_components_dashboard_pages_home_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/pages/home.html", size: 247, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/pages/home.html", size: 247, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4628,7 +4829,7 @@ func www_app_components_dashboard_protractor_smoke_spec_js() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/protractor/smoke.spec.js", size: 2616, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/protractor/smoke.spec.js", size: 2616, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4645,7 +4846,7 @@ func www_app_components_dashboard_test_controllers_header_spec_js() (*asset, err return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/test/controllers/header.spec.js", size: 1293, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/test/controllers/header.spec.js", size: 1293, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4696,7 +4897,7 @@ func www_app_components_dashboard_views_groups_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/groups.html", size: 1298, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/groups.html", size: 1298, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4720,7 +4921,7 @@ func www_app_components_dashboard_views_listevents_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/listEvents.html", size: 326, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/listEvents.html", size: 326, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4744,7 +4945,7 @@ func www_app_components_dashboard_views_listminions_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/listMinions.html", size: 327, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/listMinions.html", size: 327, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4768,7 +4969,7 @@ func www_app_components_dashboard_views_listpods_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/listPods.html", size: 324, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/listPods.html", size: 324, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4844,7 +5045,7 @@ func www_app_components_dashboard_views_listpodscards_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/listPodsCards.html", size: 1967, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/listPodsCards.html", size: 1967, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4878,7 +5079,7 @@ func www_app_components_dashboard_views_listpodsvisualizer_html() (*asset, error return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/listPodsVisualizer.html", size: 841, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/listPodsVisualizer.html", size: 841, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4902,7 +5103,7 @@ func www_app_components_dashboard_views_listreplicationcontrollers_html() (*asse return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/listReplicationControllers.html", size: 342, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/listReplicationControllers.html", size: 342, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4926,7 +5127,7 @@ func www_app_components_dashboard_views_listservices_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/listServices.html", size: 328, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/listServices.html", size: 328, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4952,7 +5153,7 @@ func www_app_components_dashboard_views_partials_cadvisor_html() (*asset, error) return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/partials/cadvisor.html", size: 443, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/partials/cadvisor.html", size: 443, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4989,7 +5190,7 @@ func www_app_components_dashboard_views_partials_groupbox_html() (*asset, error) return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/partials/groupBox.html", size: 769, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/partials/groupBox.html", size: 769, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -5048,7 +5249,7 @@ func www_app_components_dashboard_views_partials_groupitem_html() (*asset, error return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/partials/groupItem.html", size: 2109, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/partials/groupItem.html", size: 2109, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -5098,7 +5299,7 @@ func www_app_components_dashboard_views_partials_podtilesbyname_html() (*asset, return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/partials/podTilesByName.html", size: 1287, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/partials/podTilesByName.html", size: 1287, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -5148,7 +5349,7 @@ func www_app_components_dashboard_views_partials_podtilesbyserver_html() (*asset return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/partials/podTilesByServer.html", size: 1281, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/partials/podTilesByServer.html", size: 1281, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -5262,7 +5463,7 @@ func www_app_components_dashboard_views_pod_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/components/dashboard/views/pod.html", size: 2740, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/components/dashboard/views/pod.html", size: 2740, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -5289,12279 +5490,270 @@ var _www_app_components_dashboard_views_replication_html = []byte(`
Created {{replicationController.creationTimestamp | date:'medium'}} - - - - - Desired Replicas - - {{replicationController.desiredState.replicas}} - - - - - Current Replicas - - {{replicationController.currentState.replicas}} - - - - - Labels - -
- {{label}}: {{value}} -
- - - - - Related Pods - -
- {{label}}: {{value}} -
- - - - - - Related Services - -
- {{label}}: {{value}} -
- - - - - - - - - - - -
- - - - - -
-`) - -func www_app_components_dashboard_views_replication_html_bytes() ([]byte, error) { - return _www_app_components_dashboard_views_replication_html, nil -} - -func www_app_components_dashboard_views_replication_html() (*asset, error) { - bytes, err := www_app_components_dashboard_views_replication_html_bytes() - if err != nil { - return nil, err - } - - info := bindata_file_info{name: "www/app/components/dashboard/views/replication.html", size: 2187, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _www_app_components_dashboard_views_service_html = []byte(`
-
-
- -
- -
- ‹ BACK -
- -
- Service: - {{service.id}} -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Created - {{service.creationTimestamp | date:'medium'}} -
Port - {{service.port}} -
Container Port - {{service.containerPort}} -
Portal IP - {{service.portalIP}} -
Protocol - {{service.protocol}} -
Session Affinity - {{service.sessionAffinity}} -
Labels -
- {{label}}: {{value}} -
-
Related Pods - -
Related Replication Controllers - -
- - - -
- -
-
-
-`) - -func www_app_components_dashboard_views_service_html_bytes() ([]byte, error) { - return _www_app_components_dashboard_views_service_html, nil -} - -func www_app_components_dashboard_views_service_html() (*asset, error) { - bytes, err := www_app_components_dashboard_views_service_html_bytes() - if err != nil { - return nil, err - } - - info := bindata_file_info{name: "www/app/components/dashboard/views/service.html", size: 2485, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _www_app_index_html = []byte(` - - - Kubernetes UI - - - - - - - - - - - -

- - -
Kubernetes
-
-

-
- -
-
-
-
-
- - - - - -
- - -
-
-
-
-
-
-
-
- - - - -`) - -func www_app_index_html_bytes() ([]byte, error) { - return _www_app_index_html, nil -} - -func www_app_index_html() (*asset, error) { - bytes, err := www_app_index_html_bytes() - if err != nil { - return nil, err - } - - info := bindata_file_info{name: "www/app/index.html", size: 2290, mode: os.FileMode(420), modTime: time.Unix(1431887938, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _www_app_shared_assets_sampledata1_json = []byte(`{ - "relations": [ - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "target": "Pod:elasticsearch-logging-controller-fplln", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:elasticsearch-logging-controller-fplln", - "target": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "target": "Process:c59ed482c768/9167", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/2046fa81d27b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:elasticsearch-logging-controller-fplln", - "target": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "target": "Process:3cbca1d60090/8980", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "target": "Pod:frontend-controller-szwk1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-szwk1", - "target": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9180", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9234", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9334", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9342", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9343", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9344", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9345", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9346", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/31634", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/5630952871a3", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-szwk1", - "target": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "target": "Process:73d5a7fedfbc/8946", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "target": "Pod:kibana-logging-controller-0133o", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:kibana-logging-controller-0133o", - "target": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9169", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9213", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9214", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9215", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9216", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/478301224e74", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:kibana-logging-controller-0133o", - "target": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "target": "Process:9692de5790bd/8983", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "target": "Pod:redis-master", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-master", - "target": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "target": "Process:7f19195ef679/22432", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/c059fe93c46a", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-master", - "target": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "target": "Process:11626b569335/22336", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "target": "Pod:redis-slave-controller-vi7hv", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-vi7hv", - "target": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Process:a9028e8bd1ab/22454", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Process:a9028e8bd1ab/22471", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Process:a9028e8bd1ab/22477", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/81b1b696a77a", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-vi7hv", - "target": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "target": "Process:f82d27e2dfcf/22308", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "target": "Pod:frontend-controller-b182t", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-b182t", - "target": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/15857", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25256", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25297", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25366", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25368", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25369", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25370", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25371", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25372", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/5630952871a3", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-b182t", - "target": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "target": "Process:c1b91efcd342/25115", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "target": "Pod:monitoring-influx-grafana-controller-gziey", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-influx-grafana-controller-gziey", - "target": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25304", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25322", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25323", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25324", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25325", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25326", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3df24075659b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-influx-grafana-controller-gziey", - "target": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "target": "Process:005426f19bca/25258", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "target": "Process:005426f19bca/25272", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/fdd2bd0d0470", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-influx-grafana-controller-gziey", - "target": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "target": "Process:bd6afd430dba/25172", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "target": "Pod:skydns-ls6k1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "target": "Process:1c6f3946b06a/25390", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/93f9564eaa33", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "target": "Process:8f17a7d63d27/25373", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3ea44ca9f1bd", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "target": "Process:14bb8d474c88/25341", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/c5f34efc4446", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "target": "Process:df65efb615d5/25074", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "target": "Pod:frontend-controller-vjzjp", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-vjzjp", - "target": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "target": "Process:c00924f5248b/4083", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-vjzjp", - "target": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4255", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4293", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4330", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4332", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4333", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4334", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4335", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4336", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/22522", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/5630952871a3", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "target": "Pod:monitoring-heapster-controller-oh43e", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-heapster-controller-oh43e", - "target": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "target": "Process:3a528bad8247/4246", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "target": "Process:3a528bad8247/4276", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6d053b2331f9", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-heapster-controller-oh43e", - "target": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "target": "Process:ae0effbebe7e/4082", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "target": "Pod:redis-slave-controller-dnyxx", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-dnyxx", - "target": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Process:0219b8fac88d/4286", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Process:0219b8fac88d/4308", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Process:0219b8fac88d/4309", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/81b1b696a77a", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-dnyxx", - "target": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "target": "Process:4cec5365e5cc/4179", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:elasticsearch-logging", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:elasticsearch-logging", - "target": "Pod:elasticsearch-logging-controller-fplln", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:kibana-logging", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:kibana-logging", - "target": "Pod:kibana-logging-controller-0133o", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:kubernetes", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:kubernetes-ro", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:monitoring-grafana", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:monitoring-heapster", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:monitoring-influxdb", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:redis-master", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:redis-master", - "target": "Pod:redis-master", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:redisslave", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:redisslave", - "target": "Pod:redis-slave-controller-dnyxx", - "type": "loadBalances" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:redisslave", - "target": "Pod:redis-slave-controller-vi7hv", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:skydns", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:skydns", - "target": "Pod:skydns-ls6k1", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:elasticsearch-logging-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:elasticsearch-logging-controller", - "target": "Pod:elasticsearch-logging-controller-fplln", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:frontend-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:frontend-controller", - "target": "Pod:frontend-controller-b182t", - "type": "monitors" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:frontend-controller", - "target": "Pod:frontend-controller-szwk1", - "type": "monitors" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:frontend-controller", - "target": "Pod:frontend-controller-vjzjp", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:kibana-logging-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:kibana-logging-controller", - "target": "Pod:kibana-logging-controller-0133o", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:monitoring-heapster-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:monitoring-heapster-controller", - "target": "Pod:monitoring-heapster-controller-oh43e", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:monitoring-influx-grafana-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:monitoring-influx-grafana-controller", - "target": "Pod:monitoring-influx-grafana-controller-gziey", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:redis-slave-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:redis-slave-controller", - "target": "Pod:redis-slave-controller-dnyxx", - "type": "monitors" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:redis-slave-controller", - "target": "Pod:redis-slave-controller-vi7hv", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:skydns", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:skydns", - "target": "Pod:skydns-ls6k1", - "type": "monitors" - } - ], - "resources": [ - { - "annotations": { - "label": "shared-kraken" - }, - "id": "Cluster:shared-kraken", - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Cluster" - }, - { - "annotations": { - "label": "kubernetes-minion-63vc" - }, - "id": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "130.211.175.232", - "id": "kubernetes-minion-63vc.c.shared-kraken.internal", - "resourceVersion": 1231193, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-63vc.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-02-25T17:19:02Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e432bc08-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "elasticsearch-logging-controller-fplln" - }, - "id": "Pod:elasticsearch-logging-controller-fplln", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-63vc.c.shared-kraken.internal", - "hostIP": "130.211.175.232", - "info": { - "POD": { - "containerID": "docker://3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.0.3", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:11Z" - } - } - }, - "elasticsearch-logging": { - "containerID": "docker://c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f", - "image": "dockerfile/elasticsearch", - "imageID": "docker://2046fa81d27b371de4ae5b6106f0a18b27f4fae94c38f68954c4685e7ae94459", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:12Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.0.3", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "dockerfile/elasticsearch", - "imagePullPolicy": "PullIfNotPresent", - "name": "elasticsearch-logging", - "ports": [ - { - "containerPort": 9200, - "name": "es-port", - "protocol": "TCP" - }, - { - "containerPort": 9300, - "name": "es-transport-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log", - "volumeMounts": [ - { - "mountPath": "/data", - "name": "es-persistent-storage", - "path": "/data" - } - ] - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": [ - { - "name": "es-persistent-storage", - "source": { - "emptyDir": {}, - "gitRepo": null, - "hostDir": null, - "persistentDisk": null, - "secret": null - } - } - ] - } - }, - "generateName": "elasticsearch-logging-controller-", - "id": "elasticsearch-logging-controller-fplln", - "labels": { - "name": "elasticsearch-logging" - }, - "namespace": "default", - "resourceVersion": 30, - "selfLink": "/api/v1beta1/pods/elasticsearch-logging-controller-fplln?namespace=default", - "uid": "eaec34d7-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.824353", - "type": "Pod" - }, - { - "annotations": { - "label": "c59ed482c768" - }, - "id": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/elasticsearch/bin/elasticsearch" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "ES_PKG_NAME=elasticsearch-1.4.3", - "HOME=/root", - "JAVA_HOME=/usr/lib/jvm/java-8-oracle", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "9200/tcp": {}, - "9300/tcp": {} - }, - "Hostname": "elasticsearch-logging-controller-fplln", - "Image": "dockerfile/elasticsearch", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:19:11.789746097Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/volumes/kubernetes.io~empty-dir/es-persistent-storage:/data", - "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/containers/elasticsearch-logging/c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/hosts", - "Id": "c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f", - "Image": "2046fa81d27b371de4ae5b6106f0a18b27f4fae94c38f68954c4685e7ae94459", - "MountLabel": "", - "Name": "/k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/elasticsearch/bin/elasticsearch", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 9167, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:12.151547994Z" - }, - "Volumes": { - "/data": "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/volumes/kubernetes.io~empty-dir/es-persistent-storage", - "/dev/termination-log": "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/containers/elasticsearch-logging/c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:32.848895", - "type": "Container" - }, - { - "annotations": { - "label": "9167" - }, - "id": "Process:c59ed482c768/9167", - "properties": { - "%CPU": "11.5", - "%MEM": "10.9", - "COMMAND": "/usr/lib/jvm/java-8-oracle/bin/java -Xms256m -Xmx1g -Xss256k -Djava.awt.headless=true -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=75 -XX:+UseCMSInitiatingOccupancyOnly -XX:+HeapDumpOnOutOfMemoryError -XX:+DisableExplicitGC -Dfile.encoding=UTF-8 -Delasticsearch -Des.foreground=yes -Des.path.home=/elasticsearch -cp :/elasticsearch/lib/elasticsearch-1.4.3.jar:/elasticsearch/lib/*:/elasticsearch/lib/sigar/* org.elasticsearch.bootstrap.Elasticsearch", - "PID": "9167", - "RSS": "414960", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "3196:26", - "TTY": "?", - "USER": "root", - "VSZ": "3704120" - }, - "timestamp": "2015-03-17T00:04:08.838467", - "type": "Process" - }, - { - "annotations": { - "label": "2046fa81d27b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/2046fa81d27b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/elasticsearch/bin/elasticsearch" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root", - "JAVA_HOME=/usr/lib/jvm/java-8-oracle", - "ES_PKG_NAME=elasticsearch-1.4.3" - ], - "ExposedPorts": { - "9200/tcp": {}, - "9300/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "4b7ce22f2d965bd8d7639c70194bf3829a4aee1055ae2285e6e75d4deec6840e", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "b80011fc668117d858aaad1a5b5e8152ca828bdc7f4fb28f6b82ec767dffce9d", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) EXPOSE 9300/tcp" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root", - "JAVA_HOME=/usr/lib/jvm/java-8-oracle", - "ES_PKG_NAME=elasticsearch-1.4.3" - ], - "ExposedPorts": { - "9200/tcp": {}, - "9300/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "4b7ce22f2d965bd8d7639c70194bf3829a4aee1055ae2285e6e75d4deec6840e", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-17T09:21:08.987830049Z", - "DockerVersion": "1.5.0", - "Id": "2046fa81d27b371de4ae5b6106f0a18b27f4fae94c38f68954c4685e7ae94459", - "Os": "linux", - "Parent": "4b7ce22f2d965bd8d7639c70194bf3829a4aee1055ae2285e6e75d4deec6840e", - "Size": 0, - "VirtualSize": 784979176 - }, - "timestamp": "2015-03-17T00:01:32.960236", - "type": "Image" - }, - { - "annotations": { - "label": "3cbca1d60090" - }, - "id": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "elasticsearch-logging-controller-fplln", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:09.993691333Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/hostname", - "HostsPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/hosts", - "Id": "3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.0.1", - "IPAddress": "10.244.0.3", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:00:03", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 8980, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:11.337452124Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:32.873132", - "type": "Container" - }, - { - "annotations": { - "label": "8980" - }, - "id": "Process:3cbca1d60090/8980", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "8980", - "RSS": "428", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:32.974952", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:32.979442", - "type": "Image" - }, - { - "annotations": { - "label": "frontend-controller-szwk1" - }, - "id": "Pod:frontend-controller-szwk1", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-63vc.c.shared-kraken.internal", - "hostIP": "130.211.175.232", - "info": { - "POD": { - "containerID": "docker://73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.0.2", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:11Z" - } - } - }, - "php-redis": { - "containerID": "docker://bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44", - "image": "kubernetes/example-guestbook-php-redis", - "imageID": "docker://5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:12Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.0.2", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "frontend-controller-", - "id": "frontend-controller-szwk1", - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - }, - "namespace": "default", - "resourceVersion": 2220, - "selfLink": "/api/v1beta1/pods/frontend-controller-szwk1?namespace=default", - "uid": "14a335e3-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.824353", - "type": "Pod" - }, - { - "annotations": { - "label": "bbe285c5f2e6" - }, - "id": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-szwk1", - "Image": "kubernetes/example-guestbook-php-redis", - "MacAddress": "", - "Memory": 50000000, - "MemorySwap": -1, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:11.81978513Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/14a335e3-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/hosts", - "Id": "bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44", - "Image": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "MountLabel": "", - "Name": "/k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 9180, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:12.570235819Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/14a335e3-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:32.991762", - "type": "Container" - }, - { - "annotations": { - "label": "9180" - }, - "id": "Process:bbe285c5f2e6/9180", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "9180", - "RSS": "80", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4412" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9234" - }, - "id": "Process:bbe285c5f2e6/9234", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "/usr/bin/python /usr/bin/supervisord -n", - "PID": "9234", - "RSS": "10904", - "START": "Feb25", - "STAT": "S", - "TIME": "4:18", - "TTY": "?", - "USER": "root", - "VSZ": "53152" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9334" - }, - "id": "Process:bbe285c5f2e6/9334", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9334", - "RSS": "11908", - "START": "Feb25", - "STAT": "S", - "TIME": "0:55", - "TTY": "?", - "USER": "root", - "VSZ": "259972" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9342" - }, - "id": "Process:bbe285c5f2e6/9342", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9342", - "RSS": "6620", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260036" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9343" - }, - "id": "Process:bbe285c5f2e6/9343", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9343", - "RSS": "8532", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260112" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9344" - }, - "id": "Process:bbe285c5f2e6/9344", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9344", - "RSS": "6624", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9345" - }, - "id": "Process:bbe285c5f2e6/9345", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9345", - "RSS": "6748", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9346" - }, - "id": "Process:bbe285c5f2e6/9346", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9346", - "RSS": "6856", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "31634" - }, - "id": "Process:bbe285c5f2e6/31634", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "31634", - "RSS": "6856", - "START": "Mar01", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260020" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "5630952871a3" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/5630952871a3", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "63db4df258d14794d7072e009c12443c790c09fb9c25119ec1d06a6197ab85aa", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-09T19:16:28.984874361Z", - "DockerVersion": "1.3.0", - "Id": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "Os": "linux", - "Parent": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "Size": 0, - "VirtualSize": 382800212 - }, - "timestamp": "2015-03-17T00:01:33.135158", - "type": "Image" - }, - { - "annotations": { - "label": "73d5a7fedfbc" - }, - "id": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-szwk1", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:09.951312223Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/hostname", - "HostsPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/hosts", - "Id": "73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.0.1", - "IPAddress": "10.244.0.2", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:00:02", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8000" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 8946, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:11.08815428Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.057129", - "type": "Container" - }, - { - "annotations": { - "label": "8946" - }, - "id": "Process:73d5a7fedfbc/8946", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "8946", - "RSS": "468", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.177745", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:32.979442", - "type": "Image" - }, - { - "annotations": { - "label": "kibana-logging-controller-0133o" - }, - "id": "Pod:kibana-logging-controller-0133o", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-63vc.c.shared-kraken.internal", - "hostIP": "130.211.175.232", - "info": { - "POD": { - "containerID": "docker://9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.0.4", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:11Z" - } - } - }, - "kibana-logging": { - "containerID": "docker://c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2", - "image": "kubernetes/kibana:1.0", - "imageID": "docker://478301224e74a6476c2c58513b024182fa92e6d8f65559ae0c11f340d0602529", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:12Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.0.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/kibana:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kibana-logging", - "ports": [ - { - "containerPort": 80, - "name": "kibana-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "kibana-logging-controller-", - "id": "kibana-logging-controller-0133o", - "labels": { - "name": "kibana-logging" - }, - "namespace": "default", - "resourceVersion": 33, - "selfLink": "/api/v1beta1/pods/kibana-logging-controller-0133o?namespace=default", - "uid": "eaecd332-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.824353", - "type": "Pod" - }, - { - "annotations": { - "label": "c61833fc16d7" - }, - "id": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/usr/local/bin/run_kibana_nginx.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "DEBIAN_FRONTEND=noninteractive", - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "kibana-logging-controller-0133o", - "Image": "kubernetes/kibana:1.0", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:11.810783288Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecd332-b7cb-11e4-9018-42010af0f3f2/containers/kibana-logging/c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/hosts", - "Id": "c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2", - "Image": "478301224e74a6476c2c58513b024182fa92e6d8f65559ae0c11f340d0602529", - "MountLabel": "", - "Name": "/k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/usr/local/bin/run_kibana_nginx.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 9169, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:12.123301077Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecd332-b7cb-11e4-9018-42010af0f3f2/containers/kibana-logging/c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.195655", - "type": "Container" - }, - { - "annotations": { - "label": "9169" - }, - "id": "Process:c61833fc16d7/9169", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: master process nginx -c /etc/nginx/nginx.conf", - "PID": "9169", - "RSS": "1612", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "90232" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9213" - }, - "id": "Process:c61833fc16d7/9213", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9213", - "RSS": "1548", - "START": "Feb25", - "STAT": "S", - "TIME": "1:16", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9214" - }, - "id": "Process:c61833fc16d7/9214", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9214", - "RSS": "1556", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9215" - }, - "id": "Process:c61833fc16d7/9215", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9215", - "RSS": "1548", - "START": "Feb25", - "STAT": "S", - "TIME": "1:20", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9216" - }, - "id": "Process:c61833fc16d7/9216", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9216", - "RSS": "1576", - "START": "Feb25", - "STAT": "S", - "TIME": "1:15", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "478301224e74" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/478301224e74", - "properties": { - "Architecture": "amd64", - "Author": "Satnam Singh \"satnam@google.com\"", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/usr/local/bin/run_kibana_nginx.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "DEBIAN_FRONTEND=noninteractive" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "8c41fcbc2d07", - "Image": "27ca45b13403ed55c47666c566020f11e7b8fa8fda3cd916427400700328957a", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "b1dfe71f6acc50f87db4038b788c34f327ca923c62d18e0d799d9f2562cf7660", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/usr/local/bin/run_kibana_nginx.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "DEBIAN_FRONTEND=noninteractive" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "8c41fcbc2d07", - "Image": "27ca45b13403ed55c47666c566020f11e7b8fa8fda3cd916427400700328957a", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-01-15T05:29:21.408402905Z", - "DockerVersion": "1.3.1", - "Id": "478301224e74a6476c2c58513b024182fa92e6d8f65559ae0c11f340d0602529", - "Os": "linux", - "Parent": "27ca45b13403ed55c47666c566020f11e7b8fa8fda3cd916427400700328957a", - "Size": 0, - "VirtualSize": 240188943 - }, - "timestamp": "2015-03-17T00:01:33.261199", - "type": "Image" - }, - { - "annotations": { - "label": "9692de5790bd" - }, - "id": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "kibana-logging-controller-0133o", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:10.014567451Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/hostname", - "HostsPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/hosts", - "Id": "9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.0.1", - "IPAddress": "10.244.0.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:00:04", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 8983, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:11.337460471Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.221048", - "type": "Container" - }, - { - "annotations": { - "label": "8983" - }, - "id": "Process:9692de5790bd/8983", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "8983", - "RSS": "472", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.275542", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:32.979442", - "type": "Image" - }, - { - "annotations": { - "label": "kubernetes-minion-a411" - }, - "id": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "23.251.159.135", - "id": "kubernetes-minion-a411.c.shared-kraken.internal", - "resourceVersion": 1231194, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-a411.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-03-01T11:57:20Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e433f082-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "redis-master" - }, - "id": "Pod:redis-master", - "properties": { - "creationTimestamp": "2015-02-19T01:36:00Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-a411.c.shared-kraken.internal", - "hostIP": "23.251.159.135", - "info": { - "POD": { - "containerID": "docker://11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.1.5", - "ready": false, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:15Z" - } - } - }, - "master": { - "containerID": "docker://7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52", - "image": "dockerfile/redis", - "imageID": "docker://c059fe93c46a2fb873656b65eeed5153208bbbaecc420f53fe2131262cce0549", - "ready": true, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:16Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.1.5", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "dockerfile/redis", - "imagePullPolicy": "PullIfNotPresent", - "name": "master", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6379, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "id": "redis-master", - "labels": { - "name": "redis-master" - }, - "namespace": "default", - "resourceVersion": 2115, - "selfLink": "/api/v1beta1/pods/redis-master?namespace=default", - "uid": "a8a4a5a1-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.318503", - "type": "Pod" - }, - { - "annotations": { - "label": "7f19195ef679" - }, - "id": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "properties": { - "AppArmorProfile": "", - "Args": [ - "/etc/redis/redis.conf" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "redis-server", - "/etc/redis/redis.conf" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-master", - "Image": "dockerfile/redis", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:23:15.585254538Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/a8a4a5a1-b7d7-11e4-9018-42010af0f3f2/containers/master/7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6379" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/hosts", - "Id": "7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52", - "Image": "c059fe93c46a2fb873656b65eeed5153208bbbaecc420f53fe2131262cce0549", - "MountLabel": "", - "Name": "/k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "redis-server", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22432, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:16.007410579Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/c47d0d1aa0dde82719421ab24d6b9fde3bc4f3fb743e71b54a13086610b7a2c3", - "/dev/termination-log": "/var/lib/kubelet/pods/a8a4a5a1-b7d7-11e4-9018-42010af0f3f2/containers/master/7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.335560", - "type": "Container" - }, - { - "annotations": { - "label": "22432" - }, - "id": "Process:7f19195ef679/22432", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "redis-server *:6379", - "PID": "22432", - "RSS": "4584", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "21:11", - "TTY": "?", - "USER": "root", - "VSZ": "35200" - }, - "timestamp": "2015-03-17T00:01:33.419996", - "type": "Process" - }, - { - "annotations": { - "label": "c059fe93c46a" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/c059fe93c46a", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "redis-server", - "/etc/redis/redis.conf" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "24d723856c60dc8457504360c4499ea0231f9f8e8a02182c64c0c284e00e4e28", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "2a14238ce1dc83aa8f164371a7f0525509095f48e81857a3038c52f4dade7af6", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) EXPOSE map[6379/tcp:{}]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "24d723856c60dc8457504360c4499ea0231f9f8e8a02182c64c0c284e00e4e28", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-01-28T20:22:11.091883429Z", - "DockerVersion": "1.3.3", - "Id": "c059fe93c46a2fb873656b65eeed5153208bbbaecc420f53fe2131262cce0549", - "Os": "linux", - "Parent": "24d723856c60dc8457504360c4499ea0231f9f8e8a02182c64c0c284e00e4e28", - "Size": 0, - "VirtualSize": 419116580 - }, - "timestamp": "2015-03-17T00:01:33.426872", - "type": "Image" - }, - { - "annotations": { - "label": "11626b569335" - }, - "id": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-master", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:23:14.098886205Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6379" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/hostname", - "HostsPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/hosts", - "Id": "11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.1.1", - "IPAddress": "10.244.1.5", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:01:05", - "PortMapping": null, - "Ports": { - "6379/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "6379" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22336, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:15.407745574Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.348500", - "type": "Container" - }, - { - "annotations": { - "label": "22336" - }, - "id": "Process:11626b569335/22336", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "22336", - "RSS": "484", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.440997", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.446163", - "type": "Image" - }, - { - "annotations": { - "label": "redis-slave-controller-vi7hv" - }, - "id": "Pod:redis-slave-controller-vi7hv", - "properties": { - "creationTimestamp": "2015-02-19T01:37:34Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-a411.c.shared-kraken.internal", - "hostIP": "23.251.159.135", - "info": { - "POD": { - "containerID": "docker://f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.1.4", - "ready": false, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:15Z" - } - } - }, - "slave": { - "containerID": "docker://a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8", - "image": "brendanburns/redis-slave", - "imageID": "docker://81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "ready": true, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:16Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.1.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 200, - "image": "brendanburns/redis-slave", - "imagePullPolicy": "PullIfNotPresent", - "name": "slave", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6380, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.2" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "redis-slave-controller-", - "id": "redis-slave-controller-vi7hv", - "labels": { - "name": "redisslave", - "uses": "redis-master" - }, - "namespace": "default", - "resourceVersion": 2165, - "selfLink": "/api/v1beta1/pods/redis-slave-controller-vi7hv?namespace=default", - "uid": "e104deb3-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.318503", - "type": "Pod" - }, - { - "annotations": { - "label": "a9028e8bd1ab" - }, - "id": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 204, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-vi7hv", - "Image": "brendanburns/redis-slave", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:23:15.607621051Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/e104deb3-b7d7-11e4-9018-42010af0f3f2/containers/slave/a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/hosts", - "Id": "a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8", - "Image": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "MountLabel": "", - "Name": "/k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22454, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:16.159511796Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/7a0e1bbae9019640fbd0d48784c7a89915919e6cfb6b11d1fb7b9255393d2ba8", - "/dev/termination-log": "/var/lib/kubelet/pods/e104deb3-b7d7-11e4-9018-42010af0f3f2/containers/slave/a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.456522", - "type": "Container" - }, - { - "annotations": { - "label": "22454" - }, - "id": "Process:a9028e8bd1ab/22454", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "22454", - "RSS": "776", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4452" - }, - "timestamp": "2015-03-17T00:01:33.507677", - "type": "Process" - }, - { - "annotations": { - "label": "22471" - }, - "id": "Process:a9028e8bd1ab/22471", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "22471", - "RSS": "2852", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "17996" - }, - "timestamp": "2015-03-17T00:01:33.507677", - "type": "Process" - }, - { - "annotations": { - "label": "22477" - }, - "id": "Process:a9028e8bd1ab/22477", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "redis-server *:6379", - "PID": "22477", - "RSS": "3860", - "START": "Feb25", - "STAT": "Sl", - "TIME": "25:35", - "TTY": "?", - "USER": "root", - "VSZ": "35180" - }, - "timestamp": "2015-03-17T00:01:33.507677", - "type": "Process" - }, - { - "annotations": { - "label": "81b1b696a77a" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/81b1b696a77a", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "9c0df3e46915e0be5819bbdab972ff9807a479beee8e9c79d4e392e12894750d", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2014-11-16T03:37:21.890022087Z", - "DockerVersion": "1.3.0", - "Id": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "Os": "linux", - "Parent": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "Size": 0, - "VirtualSize": 434171778 - }, - "timestamp": "2015-03-17T00:01:33.515295", - "type": "Image" - }, - { - "annotations": { - "label": "f82d27e2dfcf" - }, - "id": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-vi7hv", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:23:14.08662704Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/hostname", - "HostsPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/hosts", - "Id": "f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.1.1", - "IPAddress": "10.244.1.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:01:04", - "PortMapping": null, - "Ports": { - "6379/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "6380" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22308, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:15.402677279Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.477380", - "type": "Container" - }, - { - "annotations": { - "label": "22308" - }, - "id": "Process:f82d27e2dfcf/22308", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "22308", - "RSS": "484", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.528016", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.446163", - "type": "Image" - }, - { - "annotations": { - "label": "kubernetes-minion-e3zy" - }, - "id": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "104.154.65.114", - "id": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "resourceVersion": 1231195, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-e3zy.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-02-25T19:54:47Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e4350128-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "frontend-controller-b182t" - }, - "id": "Pod:frontend-controller-b182t", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "hostIP": "104.154.65.114", - "info": { - "POD": { - "containerID": "docker://c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.2.5", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:38:59Z" - } - } - }, - "php-redis": { - "containerID": "docker://e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7", - "image": "kubernetes/example-guestbook-php-redis", - "imageID": "docker://5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:01Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.2.5", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "frontend-controller-", - "id": "frontend-controller-b182t", - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - }, - "namespace": "default", - "resourceVersion": 2221, - "selfLink": "/api/v1beta1/pods/frontend-controller-b182t?namespace=default", - "uid": "14a3a978-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.559330", - "type": "Pod" - }, - { - "annotations": { - "label": "e868855420dd" - }, - "id": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-b182t", - "Image": "kubernetes/example-guestbook-php-redis", - "MacAddress": "", - "Memory": 50000000, - "MemorySwap": -1, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:00.430009522Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/14a3a978-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/hosts", - "Id": "e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7", - "Image": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "MountLabel": "", - "Name": "/k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25256, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:01.035418104Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/14a3a978-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.622107", - "type": "Container" - }, - { - "annotations": { - "label": "15857" - }, - "id": "Process:e868855420dd/15857", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "15857", - "RSS": "5980", - "START": "Feb28", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25256" - }, - "id": "Process:e868855420dd/25256", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "25256", - "RSS": "80", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4412" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25297" - }, - "id": "Process:e868855420dd/25297", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "/usr/bin/python /usr/bin/supervisord -n", - "PID": "25297", - "RSS": "10676", - "START": "Feb25", - "STAT": "S", - "TIME": "4:11", - "TTY": "?", - "USER": "root", - "VSZ": "53152" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25366" - }, - "id": "Process:e868855420dd/25366", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25366", - "RSS": "11332", - "START": "Feb25", - "STAT": "S", - "TIME": "0:54", - "TTY": "?", - "USER": "root", - "VSZ": "259972" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25368" - }, - "id": "Process:e868855420dd/25368", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25368", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25369" - }, - "id": "Process:e868855420dd/25369", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25369", - "RSS": "7392", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260112" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25370" - }, - "id": "Process:e868855420dd/25370", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25370", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25371" - }, - "id": "Process:e868855420dd/25371", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25371", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260020" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25372" - }, - "id": "Process:e868855420dd/25372", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25372", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "5630952871a3" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/5630952871a3", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "63db4df258d14794d7072e009c12443c790c09fb9c25119ec1d06a6197ab85aa", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-09T19:16:28.984874361Z", - "DockerVersion": "1.3.0", - "Id": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "Os": "linux", - "Parent": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "Size": 0, - "VirtualSize": 382800212 - }, - "timestamp": "2015-03-17T00:01:33.840468", - "type": "Image" - }, - { - "annotations": { - "label": "c1b91efcd342" - }, - "id": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-b182t", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:38:59.335299221Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/hostname", - "HostsPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/hosts", - "Id": "c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.2.1", - "IPAddress": "10.244.2.5", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:02:05", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8000" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25115, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:38:59.643646773Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.637005", - "type": "Container" - }, - { - "annotations": { - "label": "25115" - }, - "id": "Process:c1b91efcd342/25115", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "25115", - "RSS": "420", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:05", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.863269", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.870098", - "type": "Image" - }, - { - "annotations": { - "label": "monitoring-influx-grafana-controller-gziey" - }, - "id": "Pod:monitoring-influx-grafana-controller-gziey", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "hostIP": "104.154.65.114", - "info": { - "POD": { - "containerID": "docker://bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.2.4", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:38:59Z" - } - } - }, - "grafana": { - "containerID": "docker://f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c", - "image": "kubernetes/heapster_grafana:v0.3", - "imageID": "docker://3df24075659b8bcc57085c2bac5043ffd651b034567a4ccb06a354a2ab0f51b3", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:01Z" - } - } - }, - "influxdb": { - "containerID": "docker://005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6", - "image": "kubernetes/heapster_influxdb:v0.3", - "imageID": "docker://fdd2bd0d0470aa206c02a9f48a90efcf4835f15829dfc0d6cee6c55850c9a834", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:00Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.2.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/heapster_influxdb:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "influxdb", - "ports": [ - { - "containerPort": 8083, - "hostPort": 8083, - "protocol": "TCP" - }, - { - "containerPort": 8086, - "hostPort": 8086, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "env": [ - { - "key": "HTTP_USER", - "name": "HTTP_USER", - "value": "admin" - }, - { - "key": "HTTP_PASS", - "name": "HTTP_PASS", - "value": "**None**" - } - ], - "image": "kubernetes/heapster_grafana:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "grafana", - "ports": [ - { - "containerPort": 80, - "hostPort": 80, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "monitoring-influx-grafana-controller-", - "id": "monitoring-influx-grafana-controller-gziey", - "labels": { - "name": "influxGrafana" - }, - "namespace": "default", - "resourceVersion": 31, - "selfLink": "/api/v1beta1/pods/monitoring-influx-grafana-controller-gziey?namespace=default", - "uid": "eaec8788-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.559330", - "type": "Pod" - }, - { - "annotations": { - "label": "f436d2afe7bf" - }, - "id": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "GRAFANA_DB_NAME=grafana", - "GRAFANA_VERSION=1.9.1", - "HOME=/", - "HTTP_PASS=**None**", - "HTTP_USER=admin", - "INFLUXDB_HOST=localhost", - "INFLUXDB_NAME=k8s", - "INFLUXDB_PASS=root", - "INFLUXDB_PORT=8086", - "INFLUXDB_PROTO=http", - "INFLUXDB_USER=root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "monitoring-influx-grafana-controller-gziey", - "Image": "kubernetes/heapster_grafana:v0.3", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:01.114457707Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/grafana/f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "80" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hosts", - "Id": "f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c", - "Image": "3df24075659b8bcc57085c2bac5043ffd651b034567a4ccb06a354a2ab0f51b3", - "MountLabel": "", - "Name": "/k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/run.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25304, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:01.358730453Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/grafana/f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.898453", - "type": "Container" - }, - { - "annotations": { - "label": "25304" - }, - "id": "Process:f436d2afe7bf/25304", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "25304", - "RSS": "396", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "17996" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25322" - }, - "id": "Process:f436d2afe7bf/25322", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: master process /usr/sbin/nginx", - "PID": "25322", - "RSS": "1644", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "85880" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25323" - }, - "id": "Process:f436d2afe7bf/25323", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25323", - "RSS": "1584", - "START": "Feb25", - "STAT": "S", - "TIME": "1:04", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25324" - }, - "id": "Process:f436d2afe7bf/25324", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25324", - "RSS": "1364", - "START": "Feb25", - "STAT": "S", - "TIME": "0:58", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25325" - }, - "id": "Process:f436d2afe7bf/25325", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25325", - "RSS": "1364", - "START": "Feb25", - "STAT": "S", - "TIME": "0:06", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25326" - }, - "id": "Process:f436d2afe7bf/25326", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25326", - "RSS": "1616", - "START": "Feb25", - "STAT": "S", - "TIME": "1:04", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "3df24075659b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3df24075659b", - "properties": { - "Architecture": "amd64", - "Author": "Vishnu Kannan ", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "GRAFANA_VERSION=1.9.1", - "HTTP_USER=admin", - "HTTP_PASS=**Random**", - "INFLUXDB_PROTO=http", - "INFLUXDB_HOST=localhost", - "INFLUXDB_PORT=8086", - "INFLUXDB_NAME=k8s", - "INFLUXDB_USER=root", - "INFLUXDB_PASS=root", - "GRAFANA_DB_NAME=grafana" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "dd40882ba0ea", - "Image": "1921bce36b2ac44718f4f0d22fb38f033d2310c74369ac9f0922f09320656e20", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "61eeb65c25115170d65c28b8445e7c9408a96dc65ce1887a76132071e598e231", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "GRAFANA_VERSION=1.9.1", - "HTTP_USER=admin", - "HTTP_PASS=**Random**", - "INFLUXDB_PROTO=http", - "INFLUXDB_HOST=localhost", - "INFLUXDB_PORT=8086", - "INFLUXDB_NAME=k8s", - "INFLUXDB_USER=root", - "INFLUXDB_PASS=root", - "GRAFANA_DB_NAME=grafana" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "dd40882ba0ea", - "Image": "1921bce36b2ac44718f4f0d22fb38f033d2310c74369ac9f0922f09320656e20", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-01-22T23:27:25.643625803Z", - "DockerVersion": "1.4.1", - "Id": "3df24075659b8bcc57085c2bac5043ffd651b034567a4ccb06a354a2ab0f51b3", - "Os": "linux", - "Parent": "1921bce36b2ac44718f4f0d22fb38f033d2310c74369ac9f0922f09320656e20", - "Size": 0, - "VirtualSize": 249655365 - }, - "timestamp": "2015-03-17T00:01:33.977770", - "type": "Image" - }, - { - "annotations": { - "label": "005426f19bca" - }, - "id": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "INFLUXDB_VERSION=0.8.8", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "PRE_CREATE_DB=k8s;grafana", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "8083/tcp": {}, - "8084/tcp": {}, - "8086/tcp": {}, - "8090/tcp": {}, - "8099/tcp": {} - }, - "Hostname": "monitoring-influx-grafana-controller-gziey", - "Image": "kubernetes/heapster_influxdb:v0.3", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:00.446336779Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/influxdb/005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "PortBindings": { - "8083/tcp": [ - { - "HostIp": "", - "HostPort": "8083" - } - ], - "8086/tcp": [ - { - "HostIp": "", - "HostPort": "8086" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hosts", - "Id": "005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6", - "Image": "fdd2bd0d0470aa206c02a9f48a90efcf4835f15829dfc0d6cee6c55850c9a834", - "MountLabel": "", - "Name": "/k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/run.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25258, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:00.793085761Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/e23637974f8e067772cd93fc7f64ac895602052e4f814675dee286223979869a", - "/dev/termination-log": "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/influxdb/005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.903087", - "type": "Container" - }, - { - "annotations": { - "label": "25258" - }, - "id": "Process:005426f19bca/25258", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "25258", - "RSS": "672", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "18016" - }, - "timestamp": "2015-03-17T00:01:33.997069", - "type": "Process" - }, - { - "annotations": { - "label": "25272" - }, - "id": "Process:005426f19bca/25272", - "properties": { - "%CPU": "0.7", - "%MEM": "2.4", - "COMMAND": "/usr/bin/influxdb -config=/config/config.toml", - "PID": "25272", - "RSS": "92496", - "START": "Feb25", - "STAT": "Sl", - "TIME": "196:28", - "TTY": "?", - "USER": "root", - "VSZ": "2315004" - }, - "timestamp": "2015-03-17T00:01:33.997069", - "type": "Process" - }, - { - "annotations": { - "label": "fdd2bd0d0470" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/fdd2bd0d0470", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "INFLUXDB_VERSION=0.8.8", - "PRE_CREATE_DB=k8s;grafana" - ], - "ExposedPorts": { - "8083/tcp": {}, - "8084/tcp": {}, - "8086/tcp": {}, - "8090/tcp": {}, - "8099/tcp": {} - }, - "Hostname": "93847cf6a341", - "Image": "01ca504ee3d1de53f259146c27bb2c3f9a4531127e46eb156c615f9596769bdb", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "" - }, - "Container": "6852c8aea0dd1195b0478ed433b5711c674191afc85d3c15c3a07c357bd7b329", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "INFLUXDB_VERSION=0.8.8", - "PRE_CREATE_DB=k8s;grafana" - ], - "ExposedPorts": { - "8083/tcp": {}, - "8084/tcp": {}, - "8086/tcp": {}, - "8090/tcp": {}, - "8099/tcp": {} - }, - "Hostname": "93847cf6a341", - "Image": "01ca504ee3d1de53f259146c27bb2c3f9a4531127e46eb156c615f9596769bdb", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "" - }, - "Created": "2015-01-19T18:54:18.48135834Z", - "DockerVersion": "1.4.1", - "Id": "fdd2bd0d0470aa206c02a9f48a90efcf4835f15829dfc0d6cee6c55850c9a834", - "Os": "linux", - "Parent": "01ca504ee3d1de53f259146c27bb2c3f9a4531127e46eb156c615f9596769bdb", - "Size": 0, - "VirtualSize": 274660127 - }, - "timestamp": "2015-03-17T00:01:34.004199", - "type": "Image" - }, - { - "annotations": { - "label": "bd6afd430dba" - }, - "id": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {}, - "8083/tcp": {}, - "8086/tcp": {} - }, - "Hostname": "monitoring-influx-grafana-controller-gziey", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:38:59.045627366Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "80" - } - ], - "8083/tcp": [ - { - "HostIp": "", - "HostPort": "8083" - } - ], - "8086/tcp": [ - { - "HostIp": "", - "HostPort": "8086" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hostname", - "HostsPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hosts", - "Id": "bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.2.1", - "IPAddress": "10.244.2.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:02:04", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "80" - } - ], - "8083/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8083" - } - ], - "8086/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8086" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25172, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:38:59.731947599Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.933984", - "type": "Container" - }, - { - "annotations": { - "label": "25172" - }, - "id": "Process:bd6afd430dba/25172", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "25172", - "RSS": "420", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.023829", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.870098", - "type": "Image" - }, - { - "annotations": { - "label": "skydns-ls6k1" - }, - "id": "Pod:skydns-ls6k1", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "hostIP": "104.154.65.114", - "info": { - "POD": { - "containerID": "docker://df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.2.6", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:38:59Z" - } - } - }, - "etcd": { - "containerID": "docker://14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d", - "image": "quay.io/coreos/etcd:latest", - "imageID": "docker://c5f34efc44466ec7abb9a68af20d2f876ea691095747e7e5a62e890cdedadcdc", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:02Z" - } - } - }, - "kube2sky": { - "containerID": "docker://8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996", - "image": "kubernetes/kube2sky:1.0", - "imageID": "docker://3ea44ca9f1bd295f38fb1922e39d26e59294453ac0c5da9ae3c12cea5834c4ad", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:02Z" - } - } - }, - "skydns": { - "containerID": "docker://1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d", - "image": "kubernetes/skydns:2014-12-23-001", - "imageID": "docker://93f9564eaa3307440f3486b109c2fd39172d59a4b49ee4470d0b6141b4113388", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:02Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.2.6", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "command": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "image": "quay.io/coreos/etcd:latest", - "imagePullPolicy": "PullAlways", - "name": "etcd", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-domain=kubernetes.local" - ], - "image": "kubernetes/kube2sky:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kube2sky", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "image": "kubernetes/skydns:2014-12-23-001", - "imagePullPolicy": "PullIfNotPresent", - "name": "skydns", - "ports": [ - { - "containerPort": 53, - "name": "dns", - "protocol": "UDP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "Default", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "skydns-", - "id": "skydns-ls6k1", - "labels": { - "k8s-app": "skydns" - }, - "namespace": "default", - "resourceVersion": 34, - "selfLink": "/api/v1beta1/pods/skydns-ls6k1?namespace=default", - "uid": "eaecec5a-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.559330", - "type": "Pod" - }, - { - "annotations": { - "label": "1c6f3946b06a" - }, - "id": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/skydns" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "skydns-ls6k1", - "Image": "kubernetes/skydns:2014-12-23-001", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:02.472036043Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/skydns/1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d", - "Image": "93f9564eaa3307440f3486b109c2fd39172d59a4b49ee4470d0b6141b4113388", - "MountLabel": "", - "Name": "/k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/skydns", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25390, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:02.691537021Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/skydns/1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.039341", - "type": "Container" - }, - { - "annotations": { - "label": "25390" - }, - "id": "Process:1c6f3946b06a/25390", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "/skydns -machines=http://localhost:4001 -addr=0.0.0.0:53 -domain=kubernetes.local.", - "PID": "25390", - "RSS": "4088", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "5:57", - "TTY": "?", - "USER": "root", - "VSZ": "13908" - }, - "timestamp": "2015-03-17T00:01:34.230185", - "type": "Process" - }, - { - "annotations": { - "label": "93f9564eaa33" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/93f9564eaa33", - "properties": { - "Architecture": "amd64", - "Author": "Tim Hockin ", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/skydns" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "88f18f678e5d", - "Image": "881bfaf6568d614f274f68a4b088037819f56604f9e3711b6e3e5bc71250ec05", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "9a789310ecdffbe544a118aba3d6d8043abff9a4d3f5e589931625f6492a72f6", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/skydns]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/skydns" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "88f18f678e5d", - "Image": "881bfaf6568d614f274f68a4b088037819f56604f9e3711b6e3e5bc71250ec05", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-23T22:39:32.213674267Z", - "DockerVersion": "1.4.1", - "Id": "93f9564eaa3307440f3486b109c2fd39172d59a4b49ee4470d0b6141b4113388", - "Os": "linux", - "Parent": "881bfaf6568d614f274f68a4b088037819f56604f9e3711b6e3e5bc71250ec05", - "Size": 0, - "VirtualSize": 8971347 - }, - "timestamp": "2015-03-17T00:01:34.258096", - "type": "Image" - }, - { - "annotations": { - "label": "8f17a7d63d27" - }, - "id": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-domain=kubernetes.local" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "-domain=kubernetes.local" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/kube2sky" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "skydns-ls6k1", - "Image": "kubernetes/kube2sky:1.0", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:02.153334595Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/kube2sky/8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996", - "Image": "3ea44ca9f1bd295f38fb1922e39d26e59294453ac0c5da9ae3c12cea5834c4ad", - "MountLabel": "", - "Name": "/k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/kube2sky", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25373, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:02.392075903Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/kube2sky/8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.044275", - "type": "Container" - }, - { - "annotations": { - "label": "25373" - }, - "id": "Process:8f17a7d63d27/25373", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "/kube2sky -domain=kubernetes.local", - "PID": "25373", - "RSS": "6032", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "1:06", - "TTY": "?", - "USER": "root", - "VSZ": "13332" - }, - "timestamp": "2015-03-17T00:02:49.511383", - "type": "Process" - }, - { - "annotations": { - "label": "3ea44ca9f1bd" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3ea44ca9f1bd", - "properties": { - "Architecture": "amd64", - "Author": "Tim Hockin ", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/kube2sky" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "665a61a9491d", - "Image": "a8cca3d55334f03efffc702ed3db2ffce9ec74e79d9401b399a0dab6212cdbd7", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "40e72afa696914d791ffa4ab5b3c0ff1e19f45e8400de0b0186d17a5c4818847", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/kube2sky]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/kube2sky" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "665a61a9491d", - "Image": "a8cca3d55334f03efffc702ed3db2ffce9ec74e79d9401b399a0dab6212cdbd7", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-11-17T04:21:36.013464763Z", - "DockerVersion": "1.3.1", - "Id": "3ea44ca9f1bd295f38fb1922e39d26e59294453ac0c5da9ae3c12cea5834c4ad", - "Os": "linux", - "Parent": "a8cca3d55334f03efffc702ed3db2ffce9ec74e79d9401b399a0dab6212cdbd7", - "Size": 0, - "VirtualSize": 7724289 - }, - "timestamp": "2015-03-17T00:01:34.330662", - "type": "Image" - }, - { - "annotations": { - "label": "14bb8d474c88" - }, - "id": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "properties": { - "AppArmorProfile": "", - "Args": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/etcd" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "2379/tcp": {}, - "2380/tcp": {}, - "4001/tcp": {}, - "7001/tcp": {} - }, - "Hostname": "skydns-ls6k1", - "Image": "quay.io/coreos/etcd:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:02.035986492Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/etcd/14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d", - "Image": "c5f34efc44466ec7abb9a68af20d2f876ea691095747e7e5a62e890cdedadcdc", - "MountLabel": "", - "Name": "/k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/etcd", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25341, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:02.092518697Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/etcd/14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.048694", - "type": "Container" - }, - { - "annotations": { - "label": "25341" - }, - "id": "Process:14bb8d474c88/25341", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "/etcd /etcd -bind-addr=127.0.0.1 -peer-bind-addr=127.0.0.1", - "PID": "25341", - "RSS": "13200", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "20:20", - "TTY": "?", - "USER": "root", - "VSZ": "25788" - }, - "timestamp": "2015-03-17T00:01:34.351085", - "type": "Process" - }, - { - "annotations": { - "label": "c5f34efc4446" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/c5f34efc4446", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/etcd" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "2379/tcp": {}, - "2380/tcp": {}, - "4001/tcp": {}, - "7001/tcp": {} - }, - "Hostname": "70f56fc06e1f", - "Image": "78d63abf03b980919deaac3454a80496559da893948f427868492fa8a0d717ab", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "84dab35d199788f0f9144cc684917a0a17cf3764bdaae768ff5e59a1f0773c79", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/etcd]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/etcd" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "2379/tcp": {}, - "2380/tcp": {}, - "4001/tcp": {}, - "7001/tcp": {} - }, - "Hostname": "70f56fc06e1f", - "Image": "78d63abf03b980919deaac3454a80496559da893948f427868492fa8a0d717ab", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-11-19T19:59:17.860180047Z", - "DockerVersion": "1.2.0", - "Id": "c5f34efc44466ec7abb9a68af20d2f876ea691095747e7e5a62e890cdedadcdc", - "Os": "linux", - "Parent": "78d63abf03b980919deaac3454a80496559da893948f427868492fa8a0d717ab", - "Size": 0, - "VirtualSize": 20152592 - }, - "timestamp": "2015-03-17T00:01:34.356938", - "type": "Image" - }, - { - "annotations": { - "label": "df65efb615d5" - }, - "id": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "skydns-ls6k1", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:38:59.274459381Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hostname", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.2.1", - "IPAddress": "10.244.2.6", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:02:06", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25074, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:38:59.546355673Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.151958", - "type": "Container" - }, - { - "annotations": { - "label": "25074" - }, - "id": "Process:df65efb615d5/25074", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "25074", - "RSS": "420", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.373261", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.870098", - "type": "Image" - }, - { - "annotations": { - "label": "kubernetes-minion-tf8u" - }, - "id": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "146.148.77.250", - "id": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "resourceVersion": 1231196, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-tf8u.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-02-24T22:37:30Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e435dbd9-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "frontend-controller-vjzjp" - }, - "id": "Pod:frontend-controller-vjzjp", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "hostIP": "146.148.77.250", - "info": { - "POD": { - "containerID": "docker://c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.3.4", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:25Z" - } - } - }, - "php-redis": { - "containerID": "docker://9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11", - "image": "kubernetes/example-guestbook-php-redis", - "imageID": "docker://5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:26Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.3.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "frontend-controller-", - "id": "frontend-controller-vjzjp", - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - }, - "namespace": "default", - "resourceVersion": 2222, - "selfLink": "/api/v1beta1/pods/frontend-controller-vjzjp?namespace=default", - "uid": "14a3cb0c-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.408110", - "type": "Pod" - }, - { - "annotations": { - "label": "c00924f5248b" - }, - "id": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-vjzjp", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.108160677Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/hostname", - "HostsPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/hosts", - "Id": "c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.3.1", - "IPAddress": "10.244.3.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:03:04", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8000" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4083, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:25.545202435Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.445394", - "type": "Container" - }, - { - "annotations": { - "label": "4083" - }, - "id": "Process:c00924f5248b/4083", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "4083", - "RSS": "432", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.544166", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:34.549147", - "type": "Image" - }, - { - "annotations": { - "label": "9a066b06d5d0" - }, - "id": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-vjzjp", - "Image": "kubernetes/example-guestbook-php-redis", - "MacAddress": "", - "Memory": 50000000, - "MemorySwap": -1, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.9813196Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/14a3cb0c-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/hosts", - "Id": "9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11", - "Image": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "MountLabel": "", - "Name": "/k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4255, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:26.715823674Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/14a3cb0c-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.454177", - "type": "Container" - }, - { - "annotations": { - "label": "4255" - }, - "id": "Process:9a066b06d5d0/4255", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "4255", - "RSS": "512", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4412" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4293" - }, - "id": "Process:9a066b06d5d0/4293", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "/usr/bin/python /usr/bin/supervisord -n", - "PID": "4293", - "RSS": "11672", - "START": "Feb25", - "STAT": "S", - "TIME": "4:24", - "TTY": "?", - "USER": "root", - "VSZ": "53152" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4330" - }, - "id": "Process:9a066b06d5d0/4330", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4330", - "RSS": "12732", - "START": "Feb25", - "STAT": "S", - "TIME": "0:55", - "TTY": "?", - "USER": "root", - "VSZ": "259972" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4332" - }, - "id": "Process:9a066b06d5d0/4332", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4332", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260036" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4333" - }, - "id": "Process:9a066b06d5d0/4333", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4333", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260020" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4334" - }, - "id": "Process:9a066b06d5d0/4334", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4334", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4335" - }, - "id": "Process:9a066b06d5d0/4335", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4335", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4336" - }, - "id": "Process:9a066b06d5d0/4336", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4336", - "RSS": "8652", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260112" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "22522" - }, - "id": "Process:9a066b06d5d0/22522", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "22522", - "RSS": "7456", - "START": "Feb28", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "5630952871a3" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/5630952871a3", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "63db4df258d14794d7072e009c12443c790c09fb9c25119ec1d06a6197ab85aa", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-09T19:16:28.984874361Z", - "DockerVersion": "1.3.0", - "Id": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "Os": "linux", - "Parent": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "Size": 0, - "VirtualSize": 382800212 - }, - "timestamp": "2015-03-17T00:01:34.580210", - "type": "Image" - }, - { - "annotations": { - "label": "monitoring-heapster-controller-oh43e" - }, - "id": "Pod:monitoring-heapster-controller-oh43e", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "hostIP": "146.148.77.250", - "info": { - "POD": { - "containerID": "docker://ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.3.5", - "ready": false, - "restartCount": 4, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:25Z" - } - } - }, - "heapster": { - "containerID": "docker://3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2", - "image": "vish/heapster:canary", - "imageID": "docker://6d053b2331f94bc79d816dbaef5ff46873f56e51deea255ddbde7120cada43cc", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:26Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.3.5", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "env": [ - { - "key": "INFLUXDB_HOST", - "name": "INFLUXDB_HOST", - "value": "monitoring-influxdb" - } - ], - "image": "vish/heapster:canary", - "imagePullPolicy": "PullIfNotPresent", - "name": "heapster", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "monitoring-heapster-controller-", - "id": "monitoring-heapster-controller-oh43e", - "labels": { - "name": "heapster", - "uses": "monitoring-influxdb" - }, - "namespace": "default", - "resourceVersion": 32, - "selfLink": "/api/v1beta1/pods/monitoring-heapster-controller-oh43e?namespace=default", - "uid": "eaecb958-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.408110", - "type": "Pod" - }, - { - "annotations": { - "label": "3a528bad8247" - }, - "id": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "INFLUXDB_HOST=monitoring-influxdb", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "monitoring-heapster-controller-oh43e", - "Image": "vish/heapster:canary", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:26.012057593Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecb958-b7cb-11e4-9018-42010af0f3f2/containers/heapster/3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/hosts", - "Id": "3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2", - "Image": "6d053b2331f94bc79d816dbaef5ff46873f56e51deea255ddbde7120cada43cc", - "MountLabel": "", - "Name": "/k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/run.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4246, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:26.41931187Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecb958-b7cb-11e4-9018-42010af0f3f2/containers/heapster/3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.596550", - "type": "Container" - }, - { - "annotations": { - "label": "4246" - }, - "id": "Process:3a528bad8247/4246", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "4246", - "RSS": "604", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "18004" - }, - "timestamp": "2015-03-17T00:01:34.653889", - "type": "Process" - }, - { - "annotations": { - "label": "4276" - }, - "id": "Process:3a528bad8247/4276", - "properties": { - "%CPU": "0.2", - "%MEM": "0.3", - "COMMAND": "/usr/bin/heapster --kubernetes_master 10.0.0.1:80 --sink influxdb --sink_influxdb_host 10.0.50.127:80", - "PID": "4276", - "RSS": "12600", - "START": "Feb25", - "STAT": "Sl", - "TIME": "59:02", - "TTY": "?", - "USER": "root", - "VSZ": "637408" - }, - "timestamp": "2015-03-17T00:01:34.653889", - "type": "Process" - }, - { - "annotations": { - "label": "6d053b2331f9" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6d053b2331f9", - "properties": { - "Architecture": "amd64", - "Author": "vishnuk@google.com", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "f22711318734", - "Image": "7fc80d85e45f67f5822b469aeb2b90c8bf14be9c4fe86ad0e376269d0adfe8ee", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "211f0b53df0f8036138b0ce1d8f101ad32a25c185e82d1c6c9bdfb2fc28b3565", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "f22711318734", - "Image": "7fc80d85e45f67f5822b469aeb2b90c8bf14be9c4fe86ad0e376269d0adfe8ee", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-18T23:42:04.849887009Z", - "DockerVersion": "1.4.1", - "Id": "6d053b2331f94bc79d816dbaef5ff46873f56e51deea255ddbde7120cada43cc", - "Os": "linux", - "Parent": "7fc80d85e45f67f5822b469aeb2b90c8bf14be9c4fe86ad0e376269d0adfe8ee", - "Size": 0, - "VirtualSize": 211046824 - }, - "timestamp": "2015-03-17T00:01:34.660083", - "type": "Image" - }, - { - "annotations": { - "label": "ae0effbebe7e" - }, - "id": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "monitoring-heapster-controller-oh43e", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.229652938Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/hostname", - "HostsPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/hosts", - "Id": "ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.3.1", - "IPAddress": "10.244.3.5", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:03:05", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4082, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:25.58370912Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.613034", - "type": "Container" - }, - { - "annotations": { - "label": "4082" - }, - "id": "Process:ae0effbebe7e/4082", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "4082", - "RSS": "432", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.680611", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:34.549147", - "type": "Image" - }, - { - "annotations": { - "label": "redis-slave-controller-dnyxx" - }, - "id": "Pod:redis-slave-controller-dnyxx", - "properties": { - "creationTimestamp": "2015-02-19T01:37:34Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "hostIP": "146.148.77.250", - "info": { - "POD": { - "containerID": "docker://4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.3.6", - "ready": false, - "restartCount": 4, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:25Z" - } - } - }, - "slave": { - "containerID": "docker://0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08", - "image": "brendanburns/redis-slave", - "imageID": "docker://81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "ready": true, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:26Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.3.6", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 200, - "image": "brendanburns/redis-slave", - "imagePullPolicy": "PullIfNotPresent", - "name": "slave", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6380, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.2" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "redis-slave-controller-", - "id": "redis-slave-controller-dnyxx", - "labels": { - "name": "redisslave", - "uses": "redis-master" - }, - "namespace": "default", - "resourceVersion": 2164, - "selfLink": "/api/v1beta1/pods/redis-slave-controller-dnyxx?namespace=default", - "uid": "e104806a-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.408110", - "type": "Pod" - }, - { - "annotations": { - "label": "0219b8fac88d" - }, - "id": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 204, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-dnyxx", - "Image": "brendanburns/redis-slave", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:21:26.517282879Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/e104806a-b7d7-11e4-9018-42010af0f3f2/containers/slave/0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/hosts", - "Id": "0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08", - "Image": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "MountLabel": "", - "Name": "/k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4286, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:26.884370926Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/bdd95a3bf51ef4f8db587f882b46885177cc6a9969fa80a6cbfd9295356db7b0", - "/dev/termination-log": "/var/lib/kubelet/pods/e104806a-b7d7-11e4-9018-42010af0f3f2/containers/slave/0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.697142", - "type": "Container" - }, - { - "annotations": { - "label": "4286" - }, - "id": "Process:0219b8fac88d/4286", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "4286", - "RSS": "84", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4452" - }, - "timestamp": "2015-03-17T00:01:34.756307", - "type": "Process" - }, - { - "annotations": { - "label": "4308" - }, - "id": "Process:0219b8fac88d/4308", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "4308", - "RSS": "600", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "17996" - }, - "timestamp": "2015-03-17T00:01:34.756307", - "type": "Process" - }, - { - "annotations": { - "label": "4309" - }, - "id": "Process:0219b8fac88d/4309", - "properties": { - "%CPU": "0.1", - "%MEM": "0.0", - "COMMAND": "redis-server *:6379", - "PID": "4309", - "RSS": "2376", - "START": "Feb25", - "STAT": "Sl", - "TIME": "28:38", - "TTY": "?", - "USER": "root", - "VSZ": "35180" - }, - "timestamp": "2015-03-17T00:01:34.756307", - "type": "Process" - }, - { - "annotations": { - "label": "81b1b696a77a" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/81b1b696a77a", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "9c0df3e46915e0be5819bbdab972ff9807a479beee8e9c79d4e392e12894750d", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2014-11-16T03:37:21.890022087Z", - "DockerVersion": "1.3.0", - "Id": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "Os": "linux", - "Parent": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "Size": 0, - "VirtualSize": 434171778 - }, - "timestamp": "2015-03-17T00:01:34.763462", - "type": "Image" - }, - { - "annotations": { - "label": "4cec5365e5cc" - }, - "id": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-dnyxx", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.365963476Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/hostname", - "HostsPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/hosts", - "Id": "4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.3.1", - "IPAddress": "10.244.3.6", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:03:06", - "PortMapping": null, - "Ports": { - "6379/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "6380" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4179, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:25.690399743Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.723437", - "type": "Container" - }, - { - "annotations": { - "label": "4179" - }, - "id": "Process:4cec5365e5cc/4179", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "4179", - "RSS": "432", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.778011", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:34.549147", - "type": "Image" - }, - { - "annotations": { - "label": "elasticsearch-logging" - }, - "id": "Service:elasticsearch-logging", - "properties": { - "containerPort": "es-port", - "createExternalLoadBalancer": true, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "elasticsearch-logging", - "labels": { - "name": "elasticsearch-logging" - }, - "namespace": "default", - "port": 9200, - "portalIP": "10.0.126.205", - "protocol": "TCP", - "publicIPs": [ - "146.148.56.136" - ], - "resourceVersion": 68, - "selector": { - "name": "elasticsearch-logging" - }, - "selfLink": "/api/v1beta1/services/elasticsearch-logging?namespace=default", - "sessionAffinity": "None", - "uid": "e8804c83-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "kibana-logging" - }, - "id": "Service:kibana-logging", - "properties": { - "containerPort": "kibana-port", - "createExternalLoadBalancer": true, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "kibana-logging", - "labels": { - "name": "kibana-logging" - }, - "namespace": "default", - "port": 5601, - "portalIP": "10.0.51.28", - "protocol": "TCP", - "publicIPs": [ - "130.211.172.131" - ], - "resourceVersion": 69, - "selector": { - "name": "kibana-logging" - }, - "selfLink": "/api/v1beta1/services/kibana-logging?namespace=default", - "sessionAffinity": "None", - "uid": "e87b2184-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "kubernetes" - }, - "id": "Service:kubernetes", - "properties": { - "containerPort": 0, - "creationTimestamp": "2015-02-19T00:11:42Z", - "id": "kubernetes", - "labels": { - "component": "apiserver", - "provider": "kubernetes" - }, - "namespace": "default", - "port": 443, - "portalIP": "10.0.0.2", - "protocol": "TCP", - "resourceVersion": 4, - "selector": null, - "selfLink": "/api/v1beta1/services/kubernetes?namespace=default", - "sessionAffinity": "None", - "uid": "e221251b-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "kubernetes-ro" - }, - "id": "Service:kubernetes-ro", - "properties": { - "containerPort": 0, - "creationTimestamp": "2015-02-19T00:11:42Z", - "id": "kubernetes-ro", - "labels": { - "component": "apiserver", - "provider": "kubernetes" - }, - "namespace": "default", - "port": 80, - "portalIP": "10.0.0.1", - "protocol": "TCP", - "resourceVersion": 5, - "selector": null, - "selfLink": "/api/v1beta1/services/kubernetes-ro?namespace=default", - "sessionAffinity": "None", - "uid": "e223bbf7-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "monitoring-grafana" - }, - "id": "Service:monitoring-grafana", - "properties": { - "containerPort": 80, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "monitoring-grafana", - "namespace": "default", - "port": 80, - "portalIP": "10.0.48.147", - "protocol": "TCP", - "resourceVersion": 22, - "selector": { - "name": "influxGrafana" - }, - "selfLink": "/api/v1beta1/services/monitoring-grafana?namespace=default", - "sessionAffinity": "None", - "uid": "e885ee4b-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "monitoring-heapster" - }, - "id": "Service:monitoring-heapster", - "properties": { - "containerPort": 8082, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "monitoring-heapster", - "namespace": "default", - "port": 80, - "portalIP": "10.0.85.65", - "protocol": "TCP", - "resourceVersion": 19, - "selector": { - "name": "heapster" - }, - "selfLink": "/api/v1beta1/services/monitoring-heapster?namespace=default", - "sessionAffinity": "None", - "uid": "e883d705-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "monitoring-influxdb" - }, - "id": "Service:monitoring-influxdb", - "properties": { - "containerPort": 8086, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "monitoring-influxdb", - "namespace": "default", - "port": 80, - "portalIP": "10.0.50.127", - "protocol": "TCP", - "resourceVersion": 21, - "selector": { - "name": "influxGrafana" - }, - "selfLink": "/api/v1beta1/services/monitoring-influxdb?namespace=default", - "sessionAffinity": "None", - "uid": "e885ceda-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "redis-master" - }, - "id": "Service:redis-master", - "properties": { - "containerPort": 6379, - "creationTimestamp": "2015-02-19T01:36:53Z", - "id": "redis-master", - "labels": { - "name": "redis-master" - }, - "namespace": "default", - "port": 6379, - "portalIP": "10.0.254.112", - "protocol": "TCP", - "resourceVersion": 2145, - "selector": { - "name": "redis-master" - }, - "selfLink": "/api/v1beta1/services/redis-master?namespace=default", - "sessionAffinity": "None", - "uid": "c81f5fae-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "redisslave" - }, - "id": "Service:redisslave", - "properties": { - "containerPort": 6379, - "creationTimestamp": "2015-02-19T01:38:46Z", - "id": "redisslave", - "labels": { - "name": "redisslave" - }, - "namespace": "default", - "port": 6379, - "portalIP": "10.0.78.161", - "protocol": "TCP", - "resourceVersion": 2209, - "selector": { - "name": "redisslave" - }, - "selfLink": "/api/v1beta1/services/redisslave?namespace=default", - "sessionAffinity": "None", - "uid": "0bac519a-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "skydns" - }, - "id": "Service:skydns", - "properties": { - "containerPort": 53, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "skydns", - "labels": { - "k8s-app": "skydns" - }, - "namespace": "default", - "port": 53, - "portalIP": "10.0.0.10", - "protocol": "UDP", - "resourceVersion": 20, - "selector": { - "k8s-app": "skydns" - }, - "selfLink": "/api/v1beta1/services/skydns?namespace=default", - "sessionAffinity": "None", - "uid": "e885b8f7-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "elasticsearch-logging-controller" - }, - "id": "ReplicationController:elasticsearch-logging-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "dockerfile/elasticsearch", - "imagePullPolicy": "PullIfNotPresent", - "name": "elasticsearch-logging", - "ports": [ - { - "containerPort": 9200, - "name": "es-port", - "protocol": "TCP" - }, - { - "containerPort": 9300, - "name": "es-transport-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log", - "volumeMounts": [ - { - "mountPath": "/data", - "name": "es-persistent-storage", - "path": "/data" - } - ] - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": [ - { - "name": "es-persistent-storage", - "source": { - "emptyDir": {}, - "gitRepo": null, - "hostDir": null, - "persistentDisk": null, - "secret": null - } - } - ] - } - }, - "labels": { - "name": "elasticsearch-logging" - } - }, - "replicaSelector": { - "name": "elasticsearch-logging" - }, - "replicas": 1 - }, - "id": "elasticsearch-logging-controller", - "labels": { - "name": "elasticsearch-logging" - }, - "namespace": "default", - "resourceVersion": 23, - "selfLink": "/api/v1beta1/replicationControllers/elasticsearch-logging-controller?namespace=default", - "uid": "e88b3b49-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "frontend-controller" - }, - "id": "ReplicationController:frontend-controller", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 3 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - } - }, - "replicaSelector": { - "name": "frontend" - }, - "replicas": 3 - }, - "id": "frontend-controller", - "labels": { - "name": "frontend" - }, - "namespace": "default", - "resourceVersion": 2219, - "selfLink": "/api/v1beta1/replicationControllers/frontend-controller?namespace=default", - "uid": "149cf3ac-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "kibana-logging-controller" - }, - "id": "ReplicationController:kibana-logging-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/kibana:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kibana-logging", - "ports": [ - { - "containerPort": 80, - "name": "kibana-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "kibana-logging" - } - }, - "replicaSelector": { - "name": "kibana-logging" - }, - "replicas": 1 - }, - "id": "kibana-logging-controller", - "labels": { - "name": "kibana-logging" - }, - "namespace": "default", - "resourceVersion": 18, - "selfLink": "/api/v1beta1/replicationControllers/kibana-logging-controller?namespace=default", - "uid": "e883e7aa-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "monitoring-heapster-controller" - }, - "id": "ReplicationController:monitoring-heapster-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "env": [ - { - "key": "INFLUXDB_HOST", - "name": "INFLUXDB_HOST", - "value": "monitoring-influxdb" - } - ], - "image": "vish/heapster:canary", - "imagePullPolicy": "PullIfNotPresent", - "name": "heapster", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "heapster", - "uses": "monitoring-influxdb" - } - }, - "replicaSelector": { - "name": "heapster" - }, - "replicas": 1 - }, - "id": "monitoring-heapster-controller", - "labels": { - "name": "heapster" - }, - "namespace": "default", - "resourceVersion": 17, - "selfLink": "/api/v1beta1/replicationControllers/monitoring-heapster-controller?namespace=default", - "uid": "e8830cb0-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "monitoring-influx-grafana-controller" - }, - "id": "ReplicationController:monitoring-influx-grafana-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/heapster_influxdb:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "influxdb", - "ports": [ - { - "containerPort": 8083, - "hostPort": 8083, - "protocol": "TCP" - }, - { - "containerPort": 8086, - "hostPort": 8086, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "env": [ - { - "key": "HTTP_USER", - "name": "HTTP_USER", - "value": "admin" - }, - { - "key": "HTTP_PASS", - "name": "HTTP_PASS", - "value": "**None**" - } - ], - "image": "kubernetes/heapster_grafana:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "grafana", - "ports": [ - { - "containerPort": 80, - "hostPort": 80, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "influxGrafana" - } - }, - "replicaSelector": { - "name": "influxGrafana" - }, - "replicas": 1 - }, - "id": "monitoring-influx-grafana-controller", - "labels": { - "name": "influxGrafana" - }, - "namespace": "default", - "resourceVersion": 24, - "selfLink": "/api/v1beta1/replicationControllers/monitoring-influx-grafana-controller?namespace=default", - "uid": "e88bcebd-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "redis-slave-controller" - }, - "id": "ReplicationController:redis-slave-controller", - "properties": { - "creationTimestamp": "2015-02-19T01:37:34Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 2 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 200, - "image": "brendanburns/redis-slave", - "imagePullPolicy": "PullIfNotPresent", - "name": "slave", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6380, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.2" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "redisslave", - "uses": "redis-master" - } - }, - "replicaSelector": { - "name": "redisslave" - }, - "replicas": 2 - }, - "id": "redis-slave-controller", - "labels": { - "name": "redisslave" - }, - "namespace": "default", - "resourceVersion": 2163, - "selfLink": "/api/v1beta1/replicationControllers/redis-slave-controller?namespace=default", - "uid": "e0fe9d98-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "skydns" - }, - "id": "ReplicationController:skydns", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "command": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "image": "quay.io/coreos/etcd:latest", - "imagePullPolicy": "PullAlways", - "name": "etcd", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-domain=kubernetes.local" - ], - "image": "kubernetes/kube2sky:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kube2sky", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "image": "kubernetes/skydns:2014-12-23-001", - "imagePullPolicy": "PullIfNotPresent", - "name": "skydns", - "ports": [ - { - "containerPort": 53, - "name": "dns", - "protocol": "UDP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "Default", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "k8s-app": "skydns" - } - }, - "replicaSelector": { - "k8s-app": "skydns" - }, - "replicas": 1 - }, - "id": "skydns", - "labels": { - "k8s-app": "skydns" - }, - "namespace": "default", - "resourceVersion": 25, - "selfLink": "/api/v1beta1/replicationControllers/skydns?namespace=default", - "uid": "e88d6fb4-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - } - ], - "success": true, - "timestamp": "2015-03-17T00:04:18.106157" -}`) + + + + + Desired Replicas + + {{replicationController.desiredState.replicas}} + + + + + Current Replicas + + {{replicationController.currentState.replicas}} + + + + + Labels + +
+ {{label}}: {{value}} +
+ + + + + Related Pods + +
+ {{label}}: {{value}} +
+ + + + + + Related Services + +
+ {{label}}: {{value}} +
+ + + + + + + + + + + + + + + + + +
+`) + +func www_app_components_dashboard_views_replication_html_bytes() ([]byte, error) { + return _www_app_components_dashboard_views_replication_html, nil +} + +func www_app_components_dashboard_views_replication_html() (*asset, error) { + bytes, err := www_app_components_dashboard_views_replication_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "www/app/components/dashboard/views/replication.html", size: 2187, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _www_app_components_dashboard_views_service_html = []byte(`
+
+
+ +
+ +
+ ‹ BACK +
+ +
+ Service: + {{service.id}} +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + -func www_app_shared_assets_sampledata1_json_bytes() ([]byte, error) { - return _www_app_shared_assets_sampledata1_json, nil + + + + + + + + + + + + + + + + + + + + + +
Created + {{service.creationTimestamp | date:'medium'}} +
Port + {{service.port}} +
Container Port + {{service.containerPort}} +
Portal IP + {{service.portalIP}} +
Protocol + {{service.protocol}} +
Session Affinity + {{service.sessionAffinity}} +
Labels +
+ {{label}}: {{value}} +
+
Related Pods + +
Related Replication Controllers + +
+ + + +
+ +
+
+
+`) + +func www_app_components_dashboard_views_service_html_bytes() ([]byte, error) { + return _www_app_components_dashboard_views_service_html, nil +} + +func www_app_components_dashboard_views_service_html() (*asset, error) { + bytes, err := www_app_components_dashboard_views_service_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "www/app/components/dashboard/views/service.html", size: 2485, mode: os.FileMode(420), modTime: time.Unix(1432241316, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _www_app_index_html = []byte(` + + + Kubernetes UI + + + + + + + + + + + +

+ + +
Kubernetes
+
+

+
+ +
+
+
+
+
+ + + + + +
+ + +
+
+
+
+
+
+
+
+ + + + +`) + +func www_app_index_html_bytes() ([]byte, error) { + return _www_app_index_html, nil } -func www_app_shared_assets_sampledata1_json() (*asset, error) { - bytes, err := www_app_shared_assets_sampledata1_json_bytes() +func www_app_index_html() (*asset, error) { + bytes, err := www_app_index_html_bytes() if err != nil { return nil, err } - info := bindata_file_info{name: "www/app/shared/assets/sampleData1.json", size: 427639, mode: os.FileMode(420), modTime: time.Unix(1431900600, 0)} + info := bindata_file_info{name: "www/app/index.html", size: 2290, mode: os.FileMode(420), modTime: time.Unix(1432067274, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -17748,7 +5940,7 @@ func www_app_views_partials_md_table_tmpl_html() (*asset, error) { return nil, err } - info := bindata_file_info{name: "www/app/views/partials/md-table.tmpl.html", size: 2920, mode: os.FileMode(420), modTime: time.Unix(1431888276, 0)} + info := bindata_file_info{name: "www/app/views/partials/md-table.tmpl.html", size: 2920, mode: os.FileMode(420), modTime: time.Unix(1432067274, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -34631,7 +22823,6 @@ var _bindata = map[string]func() (*asset, error){ "www/app/components/dashboard/views/replication.html": www_app_components_dashboard_views_replication_html, "www/app/components/dashboard/views/service.html": www_app_components_dashboard_views_service_html, "www/app/index.html": www_app_index_html, - "www/app/shared/assets/sampleData1.json": www_app_shared_assets_sampledata1_json, "www/app/vendor/.gitkeep": www_app_vendor_gitkeep, "www/app/vendor/angular-json-human/dist/angular-json-human.css": www_app_vendor_angular_json_human_dist_angular_json_human_css, "www/app/vendor/angular-material/angular-material.css": www_app_vendor_angular_material_angular_material_css, @@ -34850,11 +23041,6 @@ var _bintree = &_bintree_t{nil, map[string]*_bintree_t{ }}, }}, "index.html": {www_app_index_html, map[string]*_bintree_t{}}, - "shared": {nil, map[string]*_bintree_t{ - "assets": {nil, map[string]*_bintree_t{ - "sampleData1.json": {www_app_shared_assets_sampledata1_json, map[string]*_bintree_t{}}, - }}, - }}, "vendor": {nil, map[string]*_bintree_t{ ".gitkeep": {www_app_vendor_gitkeep, map[string]*_bintree_t{}}, "angular-json-human": {nil, map[string]*_bintree_t{ diff --git a/www/app/assets/css/app.css b/www/app/assets/css/app.css index 3afc50a3e1598..93044df0491f0 100644 --- a/www/app/assets/css/app.css +++ b/www/app/assets/css/app.css @@ -1506,3 +1506,6 @@ md-toolbar h1 { .dashboard .detail .containerTable td { padding-right: 20px; } +.dashboard .align-top tbody { + vertical-align: top; +} diff --git a/www/app/assets/js/app.js b/www/app/assets/js/app.js index ecba65d0a4732..63a7f44bfbe6e 100644 --- a/www/app/assets/js/app.js +++ b/www/app/assets/js/app.js @@ -144,6 +144,7 @@ angular.module("kubernetesApp.config", []) .constant("ENV", { "/": { "k8sApiServer": "/api/v1beta2", + "k8sApiv1beta3Server": "/api/v1beta3", "k8sDataServer": "/cluster", "k8sDataPollMinIntervalSec": 10, "k8sDataPollMaxIntervalSec": 120, @@ -205,7 +206,7 @@ app.controller('TabCtrl', [ .service('cAdvisorService', ["$http", "$q", "ENV", function($http, $q, ENV) { var _baseUrl = function(minionIp) { var minionPort = ENV['/']['cAdvisorPort'] || "8081"; - var proxy = ENV['/']['cAdvisorProxy'] || "/api/v1beta2/proxy/nodes/"; + var proxy = ENV['/']['cAdvisorProxy'] || "/api/v1beta3/proxy/nodes/"; return proxy + minionIp + ':' + minionPort + '/api/v1.0/'; }; @@ -437,6 +438,54 @@ app.provider('k8sApi', } }]); +app.provider('k8sv1Beta3Api', + function() { + + var urlBase = ''; + var _namespace = 'default'; + + this.setUrlBase = function(value) { urlBase = value; }; + + this.setNamespace = function(value) { _namespace = value; }; + this.getNamespace = function() { return _namespace; }; + + var _get = function($http, baseUrl, query) { + var _fullUrl = baseUrl; + + if (query !== undefined) { + _fullUrl += '/' + query; + } + + return $http.get(_fullUrl); + }; + + this.$get = ["$http", "$q", function($http, $q) { + var api = {}; + + api.getUrlBase = function() { return urlBase + '/namespaces/' + _namespace; }; + + api.getPods = function(query) { return _get($http, api.getUrlBase() + '/pods', query); }; + + api.getMinions = function(query) { return _get($http, urlBase + '/nodes', query); }; + + api.getServices = function(query) { return _get($http, api.getUrlBase() + '/services', query); }; + + api.getReplicationControllers = function(query) { + return _get($http, api.getUrlBase() + '/replicationcontrollers', query) + }; + + api.getEvents = function(query) { return _get($http, api.getUrlBase() + '/events', query); }; + + return api; + }]; + }) + .config(["k8sv1Beta3ApiProvider", "ENV", function(k8sv1Beta3ApiProvider, ENV) { + if (ENV && ENV['/'] && ENV['/']['k8sApiv1beta3Server']) { + var proxy = ENV['/']['cAdvisorProxy'] || ''; + k8sv1Beta3ApiProvider.setUrlBase(proxy + ENV['/']['k8sApiv1beta3Server']); + } + }]); + (function() { "use strict"; @@ -2193,57 +2242,93 @@ angular.module('kubernetesApp.components.dashboard') */ function PodDataService($q) { var pods = { - "kind": "PodList", - "creationTimestamp": null, - "selfLink": "/api/v1beta1/pods", - "resourceVersion": 166552, - "apiVersion": "v1beta1", - "items": [{ - "id": "hello", - "uid": "0fe3644e-ab53-11e4-8ae8-061695c59fcf", - "creationTimestamp": "2015-02-03T03:16:36Z", - "selfLink": "/api/v1beta1/pods/hello?namespace=default", - "resourceVersion": 466, + "kind": "Pod", + "apiVersion": "v1beta3", + "metadata": { + "name": "redis-master-c0r1n", + "generateName": "redis-master-", "namespace": "default", - "labels": {"environment": "testing", "name": "hello"}, - "desiredState": { - "manifest": { - "version": "v1beta2", - "id": "", - "volumes": null, - "containers": [{ - "name": "hello", - "image": "quay.io/kelseyhightower/hello", - "ports": [{"hostPort": 80, "containerPort": 80, "protocol": "TCP"}], - "imagePullPolicy": "PullIfNotPresent" - }], - "restartPolicy": {"always": {}}, - "dnsPolicy": "ClusterFirst" - } + "selfLink": "/api/v1beta3/namespaces/default/pods/redis-master-c0r1n", + "uid": "f12ddfaf-ff77-11e4-8f2d-080027213276", + "resourceVersion": "39", + "creationTimestamp": "2015-05-21T05:12:14Z", + "labels": { + "name": "redis-master" }, - "currentState": { - "manifest": {"version": "", "id": "", "volumes": null, "containers": null, "restartPolicy": {}}, - "status": "Running", - "host": "172.31.12.204", - "podIP": "10.244.73.2", - "info": { - "hello": { - "state": {"running": {"startedAt": "2015-02-03T03:16:51Z"}}, - "restartCount": 0, - "image": "quay.io/kelseyhightower/hello", - "containerID": "docker://96ade8ff30a44c4489969eaf343a7899317671b07a9766ecd0963e9b41501256" - }, - "net": { - "state": {"running": {"startedAt": "2015-02-03T03:16:41Z"}}, - "restartCount": 0, - "podIP": "10.244.73.2", - "image": "kubernetes/pause:latest", - "containerID": "docker://93d32603cafbff7165dadb1d4527899c24246bca2f5e6770b8297fd3721b272c" - } - } + "annotations": { + "kubernetes.io/created-by": "{\"kind\":\"SerializedReference\",\"apiVersion\":\"v1beta3\",\"reference\":{\"kind\":\"ReplicationController\",\"namespace\":\"default\",\"name\":\"redis-master\",\"uid\":\"f12969e0-ff77-11e4-8f2d-080027213276\",\"apiVersion\":\"v1beta3\",\"resourceVersion\":\"26\"}}" } - }] - }; + }, + "spec": { + "volumes": [ + { + "name": "default-token-zb4rq", + "secret": { + "secretName": "default-token-zb4rq" + } + } + ], + "containers": [ + { + "name": "master", + "image": "redis", + "ports": [ + { + "containerPort": 6379, + "protocol": "TCP" + } + ], + "resources": {}, + "volumeMounts": [ + { + "name": "default-token-zb4rq", + "readOnly": true, + "mountPath": "/var/run/secrets/kubernetes.io/serviceaccount" + } + ], + "terminationMessagePath": "/dev/termination-log", + "imagePullPolicy": "IfNotPresent", + "capabilities": {}, + "securityContext": { + "capabilities": {}, + "privileged": false + } + } + ], + "restartPolicy": "Always", + "dnsPolicy": "ClusterFirst", + "serviceAccount": "default", + "host": "127.0.0.1" + }, + "status": { + "phase": "Running", + "Condition": [ + { + "type": "Ready", + "status": "True" + } + ], + "hostIP": "127.0.0.1", + "podIP": "172.17.0.1", + "startTime": "2015-05-21T05:12:14Z", + "containerStatuses": [ + { + "name": "master", + "state": { + "running": { + "startedAt": "2015-05-21T05:12:14Z" + } + }, + "lastState": {}, + "ready": true, + "restartCount": 0, + "image": "redis", + "imageID": "docker://95af5842ddb9b03f7c6ec7601e65924cec516fcedd7e590ae31660057085cf67", + "containerID": "docker://ae2a1e0a91a8b1015191a0b8e2ce8c55a86fb1a9a2b1e8e3b29430c9d93c8c09" + } + ] + } +}; // Uses promises return { @@ -2272,13 +2357,68 @@ angular.module('kubernetesApp.components.dashboard') */ function ReplicationControllerDataService($q) { var replicationControllers = { - "kind": "ReplicationControllerList", - "creationTimestamp": null, - "selfLink": "/api/v1beta1/replicationControllers", - "resourceVersion": 166552, - "apiVersion": "v1beta1", - "items": [] - }; + "kind": "List", + "apiVersion": "v1beta3", + "metadata": {}, + "items": [ + { + "kind": "ReplicationController", + "apiVersion": "v1beta3", + "metadata": { + "name": "redis-master", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/replicationcontrollers/redis-master", + "uid": "f12969e0-ff77-11e4-8f2d-080027213276", + "resourceVersion": "28", + "creationTimestamp": "2015-05-21T05:12:14Z", + "labels": { + "name": "redis-master" + } + }, + "spec": { + "replicas": 1, + "selector": { + "name": "redis-master" + }, + "template": { + "metadata": { + "creationTimestamp": null, + "labels": { + "name": "redis-master" + } + }, + "spec": { + "containers": [ + { + "name": "master", + "image": "redis", + "ports": [ + { + "containerPort": 6379, + "protocol": "TCP" + } + ], + "resources": {}, + "terminationMessagePath": "/dev/termination-log", + "imagePullPolicy": "IfNotPresent", + "capabilities": {}, + "securityContext": { + "capabilities": {}, + "privileged": false + } + } + ], + "restartPolicy": "Always", + "dnsPolicy": "ClusterFirst", + "serviceAccount": "" + } + } + }, + "status": { + "replicas": 1 + } + } + ]}; // Uses promises return { @@ -2306,44 +2446,96 @@ angular.module('kubernetesApp.components.dashboard') */ function ServiceDataService($q) { var services = { - "kind": "ServiceList", - "creationTimestamp": null, - "selfLink": "/api/v1beta1/services", - "resourceVersion": 166552, - "apiVersion": "v1beta1", - "items": [ + "kind": "List", + "apiVersion": "v1beta3", + "metadata": {}, + "items": [ { - "id": "kubernetes", - "uid": "626dd08d-ab51-11e4-8ae8-061695c59fcf", - "creationTimestamp": "2015-02-03T03:04:36Z", - "selfLink": "/api/v1beta1/services/kubernetes?namespace=default", - "resourceVersion": 11, - "namespace": "default", - "port": 443, - "protocol": "TCP", - "labels": {"component": "apiserver", "provider": "kubernetes"}, - "selector": null, - "containerPort": 0, - "portalIP": "10.244.66.215", - "sessionAffinity": "None" + "kind": "Service", + "apiVersion": "v1beta3", + "metadata": { + "name": "kubernetes", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/services/kubernetes", + "resourceVersion": "6", + "creationTimestamp": null, + "labels": { + "component": "apiserver", + "provider": "kubernetes" + } + }, + "spec": { + "ports": [ + { + "protocol": "TCP", + "port": 443, + "targetPort": 443 + } + ], + "portalIP": "10.0.0.2", + "sessionAffinity": "None" + }, + "status": {} }, { - "id": "kubernetes-ro", - "uid": "626f9584-ab51-11e4-8ae8-061695c59fcf", - "creationTimestamp": "2015-02-03T03:04:36Z", - "selfLink": "/api/v1beta1/services/kubernetes-ro?namespace=default", - "resourceVersion": 12, - "namespace": "default", - "port": 80, - "protocol": "TCP", - "labels": {"component": "apiserver", "provider": "kubernetes"}, - "selector": null, - "containerPort": 0, - "portalIP": "10.244.182.142", - "sessionAffinity": "None" + "kind": "Service", + "apiVersion": "v1beta3", + "metadata": { + "name": "kubernetes-ro", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/services/kubernetes-ro", + "resourceVersion": "8", + "creationTimestamp": null, + "labels": { + "component": "apiserver", + "provider": "kubernetes" + } + }, + "spec": { + "ports": [ + { + "protocol": "TCP", + "port": 80, + "targetPort": 80 + } + ], + "portalIP": "10.0.0.1", + "sessionAffinity": "None" + }, + "status": {} + }, + { + "kind": "Service", + "apiVersion": "v1beta3", + "metadata": { + "name": "redis-master", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/services/redis-master", + "uid": "a6fde246-ff78-11e4-8f2d-080027213276", + "resourceVersion": "72", + "creationTimestamp": "2015-05-21T05:17:19Z", + "labels": { + "name": "redis-master" + } + }, + "spec": { + "ports": [ + { + "protocol": "TCP", + "port": 6379, + "targetPort": 6379 + } + ], + "selector": { + "name": "redis-master" + }, + "portalIP": "10.0.0.124", + "sessionAffinity": "None" + }, + "status": {} } - ] - }; + ] +}; // Uses promises return { diff --git a/www/app/shared/assets/sampleData1.json b/www/app/shared/assets/sampleData1.json deleted file mode 100644 index 692de4e15005a..0000000000000 --- a/www/app/shared/assets/sampleData1.json +++ /dev/null @@ -1,11993 +0,0 @@ -{ - "relations": [ - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "target": "Pod:elasticsearch-logging-controller-fplln", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:elasticsearch-logging-controller-fplln", - "target": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "target": "Process:c59ed482c768/9167", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/2046fa81d27b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:elasticsearch-logging-controller-fplln", - "target": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "target": "Process:3cbca1d60090/8980", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "target": "Pod:frontend-controller-szwk1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-szwk1", - "target": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9180", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9234", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9334", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9342", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9343", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9344", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9345", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9346", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/31634", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/5630952871a3", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-szwk1", - "target": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "target": "Process:73d5a7fedfbc/8946", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "target": "Pod:kibana-logging-controller-0133o", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:kibana-logging-controller-0133o", - "target": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9169", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9213", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9214", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9215", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9216", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/478301224e74", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:kibana-logging-controller-0133o", - "target": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "target": "Process:9692de5790bd/8983", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "target": "Pod:redis-master", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-master", - "target": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "target": "Process:7f19195ef679/22432", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/c059fe93c46a", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-master", - "target": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "target": "Process:11626b569335/22336", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "target": "Pod:redis-slave-controller-vi7hv", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-vi7hv", - "target": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Process:a9028e8bd1ab/22454", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Process:a9028e8bd1ab/22471", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Process:a9028e8bd1ab/22477", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/81b1b696a77a", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-vi7hv", - "target": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "target": "Process:f82d27e2dfcf/22308", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "target": "Pod:frontend-controller-b182t", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-b182t", - "target": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/15857", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25256", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25297", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25366", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25368", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25369", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25370", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25371", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25372", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/5630952871a3", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-b182t", - "target": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "target": "Process:c1b91efcd342/25115", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "target": "Pod:monitoring-influx-grafana-controller-gziey", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-influx-grafana-controller-gziey", - "target": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25304", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25322", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25323", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25324", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25325", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25326", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3df24075659b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-influx-grafana-controller-gziey", - "target": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "target": "Process:005426f19bca/25258", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "target": "Process:005426f19bca/25272", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/fdd2bd0d0470", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-influx-grafana-controller-gziey", - "target": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "target": "Process:bd6afd430dba/25172", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "target": "Pod:skydns-ls6k1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "target": "Process:1c6f3946b06a/25390", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/93f9564eaa33", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "target": "Process:8f17a7d63d27/25373", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3ea44ca9f1bd", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "target": "Process:14bb8d474c88/25341", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/c5f34efc4446", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "target": "Process:df65efb615d5/25074", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "target": "Pod:frontend-controller-vjzjp", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-vjzjp", - "target": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "target": "Process:c00924f5248b/4083", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-vjzjp", - "target": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4255", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4293", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4330", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4332", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4333", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4334", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4335", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4336", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/22522", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/5630952871a3", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "target": "Pod:monitoring-heapster-controller-oh43e", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-heapster-controller-oh43e", - "target": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "target": "Process:3a528bad8247/4246", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "target": "Process:3a528bad8247/4276", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6d053b2331f9", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-heapster-controller-oh43e", - "target": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "target": "Process:ae0effbebe7e/4082", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "target": "Pod:redis-slave-controller-dnyxx", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-dnyxx", - "target": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Process:0219b8fac88d/4286", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Process:0219b8fac88d/4308", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Process:0219b8fac88d/4309", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/81b1b696a77a", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-dnyxx", - "target": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "target": "Process:4cec5365e5cc/4179", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:elasticsearch-logging", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:elasticsearch-logging", - "target": "Pod:elasticsearch-logging-controller-fplln", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:kibana-logging", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:kibana-logging", - "target": "Pod:kibana-logging-controller-0133o", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:kubernetes", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:kubernetes-ro", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:monitoring-grafana", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:monitoring-heapster", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:monitoring-influxdb", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:redis-master", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:redis-master", - "target": "Pod:redis-master", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:redisslave", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:redisslave", - "target": "Pod:redis-slave-controller-dnyxx", - "type": "loadBalances" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:redisslave", - "target": "Pod:redis-slave-controller-vi7hv", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:skydns", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:skydns", - "target": "Pod:skydns-ls6k1", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:elasticsearch-logging-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:elasticsearch-logging-controller", - "target": "Pod:elasticsearch-logging-controller-fplln", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:frontend-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:frontend-controller", - "target": "Pod:frontend-controller-b182t", - "type": "monitors" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:frontend-controller", - "target": "Pod:frontend-controller-szwk1", - "type": "monitors" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:frontend-controller", - "target": "Pod:frontend-controller-vjzjp", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:kibana-logging-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:kibana-logging-controller", - "target": "Pod:kibana-logging-controller-0133o", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:monitoring-heapster-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:monitoring-heapster-controller", - "target": "Pod:monitoring-heapster-controller-oh43e", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:monitoring-influx-grafana-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:monitoring-influx-grafana-controller", - "target": "Pod:monitoring-influx-grafana-controller-gziey", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:redis-slave-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:redis-slave-controller", - "target": "Pod:redis-slave-controller-dnyxx", - "type": "monitors" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:redis-slave-controller", - "target": "Pod:redis-slave-controller-vi7hv", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:skydns", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:skydns", - "target": "Pod:skydns-ls6k1", - "type": "monitors" - } - ], - "resources": [ - { - "annotations": { - "label": "shared-kraken" - }, - "id": "Cluster:shared-kraken", - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Cluster" - }, - { - "annotations": { - "label": "kubernetes-minion-63vc" - }, - "id": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "130.211.175.232", - "id": "kubernetes-minion-63vc.c.shared-kraken.internal", - "resourceVersion": 1231193, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-63vc.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-02-25T17:19:02Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e432bc08-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "elasticsearch-logging-controller-fplln" - }, - "id": "Pod:elasticsearch-logging-controller-fplln", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-63vc.c.shared-kraken.internal", - "hostIP": "130.211.175.232", - "info": { - "POD": { - "containerID": "docker://3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.0.3", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:11Z" - } - } - }, - "elasticsearch-logging": { - "containerID": "docker://c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f", - "image": "dockerfile/elasticsearch", - "imageID": "docker://2046fa81d27b371de4ae5b6106f0a18b27f4fae94c38f68954c4685e7ae94459", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:12Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.0.3", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "dockerfile/elasticsearch", - "imagePullPolicy": "PullIfNotPresent", - "name": "elasticsearch-logging", - "ports": [ - { - "containerPort": 9200, - "name": "es-port", - "protocol": "TCP" - }, - { - "containerPort": 9300, - "name": "es-transport-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log", - "volumeMounts": [ - { - "mountPath": "/data", - "name": "es-persistent-storage", - "path": "/data" - } - ] - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": [ - { - "name": "es-persistent-storage", - "source": { - "emptyDir": {}, - "gitRepo": null, - "hostDir": null, - "persistentDisk": null, - "secret": null - } - } - ] - } - }, - "generateName": "elasticsearch-logging-controller-", - "id": "elasticsearch-logging-controller-fplln", - "labels": { - "name": "elasticsearch-logging" - }, - "namespace": "default", - "resourceVersion": 30, - "selfLink": "/api/v1beta1/pods/elasticsearch-logging-controller-fplln?namespace=default", - "uid": "eaec34d7-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.824353", - "type": "Pod" - }, - { - "annotations": { - "label": "c59ed482c768" - }, - "id": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/elasticsearch/bin/elasticsearch" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "ES_PKG_NAME=elasticsearch-1.4.3", - "HOME=/root", - "JAVA_HOME=/usr/lib/jvm/java-8-oracle", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "9200/tcp": {}, - "9300/tcp": {} - }, - "Hostname": "elasticsearch-logging-controller-fplln", - "Image": "dockerfile/elasticsearch", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:19:11.789746097Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/volumes/kubernetes.io~empty-dir/es-persistent-storage:/data", - "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/containers/elasticsearch-logging/c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/hosts", - "Id": "c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f", - "Image": "2046fa81d27b371de4ae5b6106f0a18b27f4fae94c38f68954c4685e7ae94459", - "MountLabel": "", - "Name": "/k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/elasticsearch/bin/elasticsearch", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 9167, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:12.151547994Z" - }, - "Volumes": { - "/data": "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/volumes/kubernetes.io~empty-dir/es-persistent-storage", - "/dev/termination-log": "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/containers/elasticsearch-logging/c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:32.848895", - "type": "Container" - }, - { - "annotations": { - "label": "9167" - }, - "id": "Process:c59ed482c768/9167", - "properties": { - "%CPU": "11.5", - "%MEM": "10.9", - "COMMAND": "/usr/lib/jvm/java-8-oracle/bin/java -Xms256m -Xmx1g -Xss256k -Djava.awt.headless=true -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=75 -XX:+UseCMSInitiatingOccupancyOnly -XX:+HeapDumpOnOutOfMemoryError -XX:+DisableExplicitGC -Dfile.encoding=UTF-8 -Delasticsearch -Des.foreground=yes -Des.path.home=/elasticsearch -cp :/elasticsearch/lib/elasticsearch-1.4.3.jar:/elasticsearch/lib/*:/elasticsearch/lib/sigar/* org.elasticsearch.bootstrap.Elasticsearch", - "PID": "9167", - "RSS": "414960", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "3196:26", - "TTY": "?", - "USER": "root", - "VSZ": "3704120" - }, - "timestamp": "2015-03-17T00:04:08.838467", - "type": "Process" - }, - { - "annotations": { - "label": "2046fa81d27b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/2046fa81d27b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/elasticsearch/bin/elasticsearch" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root", - "JAVA_HOME=/usr/lib/jvm/java-8-oracle", - "ES_PKG_NAME=elasticsearch-1.4.3" - ], - "ExposedPorts": { - "9200/tcp": {}, - "9300/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "4b7ce22f2d965bd8d7639c70194bf3829a4aee1055ae2285e6e75d4deec6840e", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "b80011fc668117d858aaad1a5b5e8152ca828bdc7f4fb28f6b82ec767dffce9d", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) EXPOSE 9300/tcp" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root", - "JAVA_HOME=/usr/lib/jvm/java-8-oracle", - "ES_PKG_NAME=elasticsearch-1.4.3" - ], - "ExposedPorts": { - "9200/tcp": {}, - "9300/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "4b7ce22f2d965bd8d7639c70194bf3829a4aee1055ae2285e6e75d4deec6840e", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-17T09:21:08.987830049Z", - "DockerVersion": "1.5.0", - "Id": "2046fa81d27b371de4ae5b6106f0a18b27f4fae94c38f68954c4685e7ae94459", - "Os": "linux", - "Parent": "4b7ce22f2d965bd8d7639c70194bf3829a4aee1055ae2285e6e75d4deec6840e", - "Size": 0, - "VirtualSize": 784979176 - }, - "timestamp": "2015-03-17T00:01:32.960236", - "type": "Image" - }, - { - "annotations": { - "label": "3cbca1d60090" - }, - "id": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "elasticsearch-logging-controller-fplln", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:09.993691333Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/hostname", - "HostsPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/hosts", - "Id": "3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.0.1", - "IPAddress": "10.244.0.3", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:00:03", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 8980, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:11.337452124Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:32.873132", - "type": "Container" - }, - { - "annotations": { - "label": "8980" - }, - "id": "Process:3cbca1d60090/8980", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "8980", - "RSS": "428", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:32.974952", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:32.979442", - "type": "Image" - }, - { - "annotations": { - "label": "frontend-controller-szwk1" - }, - "id": "Pod:frontend-controller-szwk1", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-63vc.c.shared-kraken.internal", - "hostIP": "130.211.175.232", - "info": { - "POD": { - "containerID": "docker://73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.0.2", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:11Z" - } - } - }, - "php-redis": { - "containerID": "docker://bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44", - "image": "kubernetes/example-guestbook-php-redis", - "imageID": "docker://5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:12Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.0.2", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "frontend-controller-", - "id": "frontend-controller-szwk1", - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - }, - "namespace": "default", - "resourceVersion": 2220, - "selfLink": "/api/v1beta1/pods/frontend-controller-szwk1?namespace=default", - "uid": "14a335e3-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.824353", - "type": "Pod" - }, - { - "annotations": { - "label": "bbe285c5f2e6" - }, - "id": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-szwk1", - "Image": "kubernetes/example-guestbook-php-redis", - "MacAddress": "", - "Memory": 50000000, - "MemorySwap": -1, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:11.81978513Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/14a335e3-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/hosts", - "Id": "bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44", - "Image": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "MountLabel": "", - "Name": "/k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 9180, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:12.570235819Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/14a335e3-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:32.991762", - "type": "Container" - }, - { - "annotations": { - "label": "9180" - }, - "id": "Process:bbe285c5f2e6/9180", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "9180", - "RSS": "80", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4412" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9234" - }, - "id": "Process:bbe285c5f2e6/9234", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "/usr/bin/python /usr/bin/supervisord -n", - "PID": "9234", - "RSS": "10904", - "START": "Feb25", - "STAT": "S", - "TIME": "4:18", - "TTY": "?", - "USER": "root", - "VSZ": "53152" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9334" - }, - "id": "Process:bbe285c5f2e6/9334", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9334", - "RSS": "11908", - "START": "Feb25", - "STAT": "S", - "TIME": "0:55", - "TTY": "?", - "USER": "root", - "VSZ": "259972" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9342" - }, - "id": "Process:bbe285c5f2e6/9342", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9342", - "RSS": "6620", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260036" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9343" - }, - "id": "Process:bbe285c5f2e6/9343", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9343", - "RSS": "8532", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260112" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9344" - }, - "id": "Process:bbe285c5f2e6/9344", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9344", - "RSS": "6624", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9345" - }, - "id": "Process:bbe285c5f2e6/9345", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9345", - "RSS": "6748", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9346" - }, - "id": "Process:bbe285c5f2e6/9346", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9346", - "RSS": "6856", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "31634" - }, - "id": "Process:bbe285c5f2e6/31634", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "31634", - "RSS": "6856", - "START": "Mar01", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260020" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "5630952871a3" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/5630952871a3", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "63db4df258d14794d7072e009c12443c790c09fb9c25119ec1d06a6197ab85aa", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-09T19:16:28.984874361Z", - "DockerVersion": "1.3.0", - "Id": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "Os": "linux", - "Parent": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "Size": 0, - "VirtualSize": 382800212 - }, - "timestamp": "2015-03-17T00:01:33.135158", - "type": "Image" - }, - { - "annotations": { - "label": "73d5a7fedfbc" - }, - "id": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-szwk1", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:09.951312223Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/hostname", - "HostsPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/hosts", - "Id": "73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.0.1", - "IPAddress": "10.244.0.2", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:00:02", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8000" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 8946, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:11.08815428Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.057129", - "type": "Container" - }, - { - "annotations": { - "label": "8946" - }, - "id": "Process:73d5a7fedfbc/8946", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "8946", - "RSS": "468", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.177745", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:32.979442", - "type": "Image" - }, - { - "annotations": { - "label": "kibana-logging-controller-0133o" - }, - "id": "Pod:kibana-logging-controller-0133o", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-63vc.c.shared-kraken.internal", - "hostIP": "130.211.175.232", - "info": { - "POD": { - "containerID": "docker://9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.0.4", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:11Z" - } - } - }, - "kibana-logging": { - "containerID": "docker://c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2", - "image": "kubernetes/kibana:1.0", - "imageID": "docker://478301224e74a6476c2c58513b024182fa92e6d8f65559ae0c11f340d0602529", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:12Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.0.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/kibana:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kibana-logging", - "ports": [ - { - "containerPort": 80, - "name": "kibana-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "kibana-logging-controller-", - "id": "kibana-logging-controller-0133o", - "labels": { - "name": "kibana-logging" - }, - "namespace": "default", - "resourceVersion": 33, - "selfLink": "/api/v1beta1/pods/kibana-logging-controller-0133o?namespace=default", - "uid": "eaecd332-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.824353", - "type": "Pod" - }, - { - "annotations": { - "label": "c61833fc16d7" - }, - "id": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/usr/local/bin/run_kibana_nginx.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "DEBIAN_FRONTEND=noninteractive", - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "kibana-logging-controller-0133o", - "Image": "kubernetes/kibana:1.0", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:11.810783288Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecd332-b7cb-11e4-9018-42010af0f3f2/containers/kibana-logging/c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/hosts", - "Id": "c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2", - "Image": "478301224e74a6476c2c58513b024182fa92e6d8f65559ae0c11f340d0602529", - "MountLabel": "", - "Name": "/k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/usr/local/bin/run_kibana_nginx.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 9169, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:12.123301077Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecd332-b7cb-11e4-9018-42010af0f3f2/containers/kibana-logging/c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.195655", - "type": "Container" - }, - { - "annotations": { - "label": "9169" - }, - "id": "Process:c61833fc16d7/9169", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: master process nginx -c /etc/nginx/nginx.conf", - "PID": "9169", - "RSS": "1612", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "90232" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9213" - }, - "id": "Process:c61833fc16d7/9213", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9213", - "RSS": "1548", - "START": "Feb25", - "STAT": "S", - "TIME": "1:16", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9214" - }, - "id": "Process:c61833fc16d7/9214", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9214", - "RSS": "1556", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9215" - }, - "id": "Process:c61833fc16d7/9215", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9215", - "RSS": "1548", - "START": "Feb25", - "STAT": "S", - "TIME": "1:20", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9216" - }, - "id": "Process:c61833fc16d7/9216", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9216", - "RSS": "1576", - "START": "Feb25", - "STAT": "S", - "TIME": "1:15", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "478301224e74" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/478301224e74", - "properties": { - "Architecture": "amd64", - "Author": "Satnam Singh \"satnam@google.com\"", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/usr/local/bin/run_kibana_nginx.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "DEBIAN_FRONTEND=noninteractive" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "8c41fcbc2d07", - "Image": "27ca45b13403ed55c47666c566020f11e7b8fa8fda3cd916427400700328957a", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "b1dfe71f6acc50f87db4038b788c34f327ca923c62d18e0d799d9f2562cf7660", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/usr/local/bin/run_kibana_nginx.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "DEBIAN_FRONTEND=noninteractive" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "8c41fcbc2d07", - "Image": "27ca45b13403ed55c47666c566020f11e7b8fa8fda3cd916427400700328957a", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-01-15T05:29:21.408402905Z", - "DockerVersion": "1.3.1", - "Id": "478301224e74a6476c2c58513b024182fa92e6d8f65559ae0c11f340d0602529", - "Os": "linux", - "Parent": "27ca45b13403ed55c47666c566020f11e7b8fa8fda3cd916427400700328957a", - "Size": 0, - "VirtualSize": 240188943 - }, - "timestamp": "2015-03-17T00:01:33.261199", - "type": "Image" - }, - { - "annotations": { - "label": "9692de5790bd" - }, - "id": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "kibana-logging-controller-0133o", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:10.014567451Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/hostname", - "HostsPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/hosts", - "Id": "9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.0.1", - "IPAddress": "10.244.0.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:00:04", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 8983, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:11.337460471Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.221048", - "type": "Container" - }, - { - "annotations": { - "label": "8983" - }, - "id": "Process:9692de5790bd/8983", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "8983", - "RSS": "472", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.275542", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:32.979442", - "type": "Image" - }, - { - "annotations": { - "label": "kubernetes-minion-a411" - }, - "id": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "23.251.159.135", - "id": "kubernetes-minion-a411.c.shared-kraken.internal", - "resourceVersion": 1231194, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-a411.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-03-01T11:57:20Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e433f082-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "redis-master" - }, - "id": "Pod:redis-master", - "properties": { - "creationTimestamp": "2015-02-19T01:36:00Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-a411.c.shared-kraken.internal", - "hostIP": "23.251.159.135", - "info": { - "POD": { - "containerID": "docker://11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.1.5", - "ready": false, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:15Z" - } - } - }, - "master": { - "containerID": "docker://7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52", - "image": "dockerfile/redis", - "imageID": "docker://c059fe93c46a2fb873656b65eeed5153208bbbaecc420f53fe2131262cce0549", - "ready": true, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:16Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.1.5", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "dockerfile/redis", - "imagePullPolicy": "PullIfNotPresent", - "name": "master", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6379, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "id": "redis-master", - "labels": { - "name": "redis-master" - }, - "namespace": "default", - "resourceVersion": 2115, - "selfLink": "/api/v1beta1/pods/redis-master?namespace=default", - "uid": "a8a4a5a1-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.318503", - "type": "Pod" - }, - { - "annotations": { - "label": "7f19195ef679" - }, - "id": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "properties": { - "AppArmorProfile": "", - "Args": [ - "/etc/redis/redis.conf" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "redis-server", - "/etc/redis/redis.conf" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-master", - "Image": "dockerfile/redis", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:23:15.585254538Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/a8a4a5a1-b7d7-11e4-9018-42010af0f3f2/containers/master/7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6379" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/hosts", - "Id": "7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52", - "Image": "c059fe93c46a2fb873656b65eeed5153208bbbaecc420f53fe2131262cce0549", - "MountLabel": "", - "Name": "/k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "redis-server", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22432, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:16.007410579Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/c47d0d1aa0dde82719421ab24d6b9fde3bc4f3fb743e71b54a13086610b7a2c3", - "/dev/termination-log": "/var/lib/kubelet/pods/a8a4a5a1-b7d7-11e4-9018-42010af0f3f2/containers/master/7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.335560", - "type": "Container" - }, - { - "annotations": { - "label": "22432" - }, - "id": "Process:7f19195ef679/22432", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "redis-server *:6379", - "PID": "22432", - "RSS": "4584", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "21:11", - "TTY": "?", - "USER": "root", - "VSZ": "35200" - }, - "timestamp": "2015-03-17T00:01:33.419996", - "type": "Process" - }, - { - "annotations": { - "label": "c059fe93c46a" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/c059fe93c46a", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "redis-server", - "/etc/redis/redis.conf" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "24d723856c60dc8457504360c4499ea0231f9f8e8a02182c64c0c284e00e4e28", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "2a14238ce1dc83aa8f164371a7f0525509095f48e81857a3038c52f4dade7af6", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) EXPOSE map[6379/tcp:{}]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "24d723856c60dc8457504360c4499ea0231f9f8e8a02182c64c0c284e00e4e28", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-01-28T20:22:11.091883429Z", - "DockerVersion": "1.3.3", - "Id": "c059fe93c46a2fb873656b65eeed5153208bbbaecc420f53fe2131262cce0549", - "Os": "linux", - "Parent": "24d723856c60dc8457504360c4499ea0231f9f8e8a02182c64c0c284e00e4e28", - "Size": 0, - "VirtualSize": 419116580 - }, - "timestamp": "2015-03-17T00:01:33.426872", - "type": "Image" - }, - { - "annotations": { - "label": "11626b569335" - }, - "id": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-master", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:23:14.098886205Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6379" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/hostname", - "HostsPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/hosts", - "Id": "11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.1.1", - "IPAddress": "10.244.1.5", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:01:05", - "PortMapping": null, - "Ports": { - "6379/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "6379" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22336, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:15.407745574Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.348500", - "type": "Container" - }, - { - "annotations": { - "label": "22336" - }, - "id": "Process:11626b569335/22336", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "22336", - "RSS": "484", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.440997", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.446163", - "type": "Image" - }, - { - "annotations": { - "label": "redis-slave-controller-vi7hv" - }, - "id": "Pod:redis-slave-controller-vi7hv", - "properties": { - "creationTimestamp": "2015-02-19T01:37:34Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-a411.c.shared-kraken.internal", - "hostIP": "23.251.159.135", - "info": { - "POD": { - "containerID": "docker://f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.1.4", - "ready": false, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:15Z" - } - } - }, - "slave": { - "containerID": "docker://a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8", - "image": "brendanburns/redis-slave", - "imageID": "docker://81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "ready": true, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:16Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.1.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 200, - "image": "brendanburns/redis-slave", - "imagePullPolicy": "PullIfNotPresent", - "name": "slave", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6380, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.2" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "redis-slave-controller-", - "id": "redis-slave-controller-vi7hv", - "labels": { - "name": "redisslave", - "uses": "redis-master" - }, - "namespace": "default", - "resourceVersion": 2165, - "selfLink": "/api/v1beta1/pods/redis-slave-controller-vi7hv?namespace=default", - "uid": "e104deb3-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.318503", - "type": "Pod" - }, - { - "annotations": { - "label": "a9028e8bd1ab" - }, - "id": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 204, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-vi7hv", - "Image": "brendanburns/redis-slave", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:23:15.607621051Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/e104deb3-b7d7-11e4-9018-42010af0f3f2/containers/slave/a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/hosts", - "Id": "a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8", - "Image": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "MountLabel": "", - "Name": "/k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22454, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:16.159511796Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/7a0e1bbae9019640fbd0d48784c7a89915919e6cfb6b11d1fb7b9255393d2ba8", - "/dev/termination-log": "/var/lib/kubelet/pods/e104deb3-b7d7-11e4-9018-42010af0f3f2/containers/slave/a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.456522", - "type": "Container" - }, - { - "annotations": { - "label": "22454" - }, - "id": "Process:a9028e8bd1ab/22454", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "22454", - "RSS": "776", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4452" - }, - "timestamp": "2015-03-17T00:01:33.507677", - "type": "Process" - }, - { - "annotations": { - "label": "22471" - }, - "id": "Process:a9028e8bd1ab/22471", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "22471", - "RSS": "2852", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "17996" - }, - "timestamp": "2015-03-17T00:01:33.507677", - "type": "Process" - }, - { - "annotations": { - "label": "22477" - }, - "id": "Process:a9028e8bd1ab/22477", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "redis-server *:6379", - "PID": "22477", - "RSS": "3860", - "START": "Feb25", - "STAT": "Sl", - "TIME": "25:35", - "TTY": "?", - "USER": "root", - "VSZ": "35180" - }, - "timestamp": "2015-03-17T00:01:33.507677", - "type": "Process" - }, - { - "annotations": { - "label": "81b1b696a77a" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/81b1b696a77a", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "9c0df3e46915e0be5819bbdab972ff9807a479beee8e9c79d4e392e12894750d", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2014-11-16T03:37:21.890022087Z", - "DockerVersion": "1.3.0", - "Id": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "Os": "linux", - "Parent": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "Size": 0, - "VirtualSize": 434171778 - }, - "timestamp": "2015-03-17T00:01:33.515295", - "type": "Image" - }, - { - "annotations": { - "label": "f82d27e2dfcf" - }, - "id": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-vi7hv", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:23:14.08662704Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/hostname", - "HostsPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/hosts", - "Id": "f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.1.1", - "IPAddress": "10.244.1.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:01:04", - "PortMapping": null, - "Ports": { - "6379/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "6380" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22308, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:15.402677279Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.477380", - "type": "Container" - }, - { - "annotations": { - "label": "22308" - }, - "id": "Process:f82d27e2dfcf/22308", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "22308", - "RSS": "484", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.528016", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.446163", - "type": "Image" - }, - { - "annotations": { - "label": "kubernetes-minion-e3zy" - }, - "id": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "104.154.65.114", - "id": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "resourceVersion": 1231195, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-e3zy.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-02-25T19:54:47Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e4350128-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "frontend-controller-b182t" - }, - "id": "Pod:frontend-controller-b182t", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "hostIP": "104.154.65.114", - "info": { - "POD": { - "containerID": "docker://c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.2.5", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:38:59Z" - } - } - }, - "php-redis": { - "containerID": "docker://e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7", - "image": "kubernetes/example-guestbook-php-redis", - "imageID": "docker://5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:01Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.2.5", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "frontend-controller-", - "id": "frontend-controller-b182t", - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - }, - "namespace": "default", - "resourceVersion": 2221, - "selfLink": "/api/v1beta1/pods/frontend-controller-b182t?namespace=default", - "uid": "14a3a978-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.559330", - "type": "Pod" - }, - { - "annotations": { - "label": "e868855420dd" - }, - "id": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-b182t", - "Image": "kubernetes/example-guestbook-php-redis", - "MacAddress": "", - "Memory": 50000000, - "MemorySwap": -1, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:00.430009522Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/14a3a978-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/hosts", - "Id": "e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7", - "Image": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "MountLabel": "", - "Name": "/k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25256, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:01.035418104Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/14a3a978-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.622107", - "type": "Container" - }, - { - "annotations": { - "label": "15857" - }, - "id": "Process:e868855420dd/15857", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "15857", - "RSS": "5980", - "START": "Feb28", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25256" - }, - "id": "Process:e868855420dd/25256", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "25256", - "RSS": "80", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4412" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25297" - }, - "id": "Process:e868855420dd/25297", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "/usr/bin/python /usr/bin/supervisord -n", - "PID": "25297", - "RSS": "10676", - "START": "Feb25", - "STAT": "S", - "TIME": "4:11", - "TTY": "?", - "USER": "root", - "VSZ": "53152" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25366" - }, - "id": "Process:e868855420dd/25366", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25366", - "RSS": "11332", - "START": "Feb25", - "STAT": "S", - "TIME": "0:54", - "TTY": "?", - "USER": "root", - "VSZ": "259972" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25368" - }, - "id": "Process:e868855420dd/25368", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25368", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25369" - }, - "id": "Process:e868855420dd/25369", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25369", - "RSS": "7392", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260112" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25370" - }, - "id": "Process:e868855420dd/25370", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25370", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25371" - }, - "id": "Process:e868855420dd/25371", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25371", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260020" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25372" - }, - "id": "Process:e868855420dd/25372", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25372", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "5630952871a3" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/5630952871a3", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "63db4df258d14794d7072e009c12443c790c09fb9c25119ec1d06a6197ab85aa", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-09T19:16:28.984874361Z", - "DockerVersion": "1.3.0", - "Id": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "Os": "linux", - "Parent": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "Size": 0, - "VirtualSize": 382800212 - }, - "timestamp": "2015-03-17T00:01:33.840468", - "type": "Image" - }, - { - "annotations": { - "label": "c1b91efcd342" - }, - "id": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-b182t", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:38:59.335299221Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/hostname", - "HostsPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/hosts", - "Id": "c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.2.1", - "IPAddress": "10.244.2.5", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:02:05", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8000" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25115, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:38:59.643646773Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.637005", - "type": "Container" - }, - { - "annotations": { - "label": "25115" - }, - "id": "Process:c1b91efcd342/25115", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "25115", - "RSS": "420", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:05", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.863269", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.870098", - "type": "Image" - }, - { - "annotations": { - "label": "monitoring-influx-grafana-controller-gziey" - }, - "id": "Pod:monitoring-influx-grafana-controller-gziey", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "hostIP": "104.154.65.114", - "info": { - "POD": { - "containerID": "docker://bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.2.4", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:38:59Z" - } - } - }, - "grafana": { - "containerID": "docker://f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c", - "image": "kubernetes/heapster_grafana:v0.3", - "imageID": "docker://3df24075659b8bcc57085c2bac5043ffd651b034567a4ccb06a354a2ab0f51b3", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:01Z" - } - } - }, - "influxdb": { - "containerID": "docker://005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6", - "image": "kubernetes/heapster_influxdb:v0.3", - "imageID": "docker://fdd2bd0d0470aa206c02a9f48a90efcf4835f15829dfc0d6cee6c55850c9a834", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:00Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.2.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/heapster_influxdb:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "influxdb", - "ports": [ - { - "containerPort": 8083, - "hostPort": 8083, - "protocol": "TCP" - }, - { - "containerPort": 8086, - "hostPort": 8086, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "env": [ - { - "key": "HTTP_USER", - "name": "HTTP_USER", - "value": "admin" - }, - { - "key": "HTTP_PASS", - "name": "HTTP_PASS", - "value": "**None**" - } - ], - "image": "kubernetes/heapster_grafana:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "grafana", - "ports": [ - { - "containerPort": 80, - "hostPort": 80, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "monitoring-influx-grafana-controller-", - "id": "monitoring-influx-grafana-controller-gziey", - "labels": { - "name": "influxGrafana" - }, - "namespace": "default", - "resourceVersion": 31, - "selfLink": "/api/v1beta1/pods/monitoring-influx-grafana-controller-gziey?namespace=default", - "uid": "eaec8788-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.559330", - "type": "Pod" - }, - { - "annotations": { - "label": "f436d2afe7bf" - }, - "id": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "GRAFANA_DB_NAME=grafana", - "GRAFANA_VERSION=1.9.1", - "HOME=/", - "HTTP_PASS=**None**", - "HTTP_USER=admin", - "INFLUXDB_HOST=localhost", - "INFLUXDB_NAME=k8s", - "INFLUXDB_PASS=root", - "INFLUXDB_PORT=8086", - "INFLUXDB_PROTO=http", - "INFLUXDB_USER=root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "monitoring-influx-grafana-controller-gziey", - "Image": "kubernetes/heapster_grafana:v0.3", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:01.114457707Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/grafana/f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "80" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hosts", - "Id": "f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c", - "Image": "3df24075659b8bcc57085c2bac5043ffd651b034567a4ccb06a354a2ab0f51b3", - "MountLabel": "", - "Name": "/k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/run.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25304, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:01.358730453Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/grafana/f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.898453", - "type": "Container" - }, - { - "annotations": { - "label": "25304" - }, - "id": "Process:f436d2afe7bf/25304", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "25304", - "RSS": "396", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "17996" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25322" - }, - "id": "Process:f436d2afe7bf/25322", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: master process /usr/sbin/nginx", - "PID": "25322", - "RSS": "1644", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "85880" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25323" - }, - "id": "Process:f436d2afe7bf/25323", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25323", - "RSS": "1584", - "START": "Feb25", - "STAT": "S", - "TIME": "1:04", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25324" - }, - "id": "Process:f436d2afe7bf/25324", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25324", - "RSS": "1364", - "START": "Feb25", - "STAT": "S", - "TIME": "0:58", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25325" - }, - "id": "Process:f436d2afe7bf/25325", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25325", - "RSS": "1364", - "START": "Feb25", - "STAT": "S", - "TIME": "0:06", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25326" - }, - "id": "Process:f436d2afe7bf/25326", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25326", - "RSS": "1616", - "START": "Feb25", - "STAT": "S", - "TIME": "1:04", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "3df24075659b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3df24075659b", - "properties": { - "Architecture": "amd64", - "Author": "Vishnu Kannan ", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "GRAFANA_VERSION=1.9.1", - "HTTP_USER=admin", - "HTTP_PASS=**Random**", - "INFLUXDB_PROTO=http", - "INFLUXDB_HOST=localhost", - "INFLUXDB_PORT=8086", - "INFLUXDB_NAME=k8s", - "INFLUXDB_USER=root", - "INFLUXDB_PASS=root", - "GRAFANA_DB_NAME=grafana" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "dd40882ba0ea", - "Image": "1921bce36b2ac44718f4f0d22fb38f033d2310c74369ac9f0922f09320656e20", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "61eeb65c25115170d65c28b8445e7c9408a96dc65ce1887a76132071e598e231", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "GRAFANA_VERSION=1.9.1", - "HTTP_USER=admin", - "HTTP_PASS=**Random**", - "INFLUXDB_PROTO=http", - "INFLUXDB_HOST=localhost", - "INFLUXDB_PORT=8086", - "INFLUXDB_NAME=k8s", - "INFLUXDB_USER=root", - "INFLUXDB_PASS=root", - "GRAFANA_DB_NAME=grafana" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "dd40882ba0ea", - "Image": "1921bce36b2ac44718f4f0d22fb38f033d2310c74369ac9f0922f09320656e20", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-01-22T23:27:25.643625803Z", - "DockerVersion": "1.4.1", - "Id": "3df24075659b8bcc57085c2bac5043ffd651b034567a4ccb06a354a2ab0f51b3", - "Os": "linux", - "Parent": "1921bce36b2ac44718f4f0d22fb38f033d2310c74369ac9f0922f09320656e20", - "Size": 0, - "VirtualSize": 249655365 - }, - "timestamp": "2015-03-17T00:01:33.977770", - "type": "Image" - }, - { - "annotations": { - "label": "005426f19bca" - }, - "id": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "INFLUXDB_VERSION=0.8.8", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "PRE_CREATE_DB=k8s;grafana", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "8083/tcp": {}, - "8084/tcp": {}, - "8086/tcp": {}, - "8090/tcp": {}, - "8099/tcp": {} - }, - "Hostname": "monitoring-influx-grafana-controller-gziey", - "Image": "kubernetes/heapster_influxdb:v0.3", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:00.446336779Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/influxdb/005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "PortBindings": { - "8083/tcp": [ - { - "HostIp": "", - "HostPort": "8083" - } - ], - "8086/tcp": [ - { - "HostIp": "", - "HostPort": "8086" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hosts", - "Id": "005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6", - "Image": "fdd2bd0d0470aa206c02a9f48a90efcf4835f15829dfc0d6cee6c55850c9a834", - "MountLabel": "", - "Name": "/k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/run.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25258, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:00.793085761Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/e23637974f8e067772cd93fc7f64ac895602052e4f814675dee286223979869a", - "/dev/termination-log": "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/influxdb/005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.903087", - "type": "Container" - }, - { - "annotations": { - "label": "25258" - }, - "id": "Process:005426f19bca/25258", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "25258", - "RSS": "672", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "18016" - }, - "timestamp": "2015-03-17T00:01:33.997069", - "type": "Process" - }, - { - "annotations": { - "label": "25272" - }, - "id": "Process:005426f19bca/25272", - "properties": { - "%CPU": "0.7", - "%MEM": "2.4", - "COMMAND": "/usr/bin/influxdb -config=/config/config.toml", - "PID": "25272", - "RSS": "92496", - "START": "Feb25", - "STAT": "Sl", - "TIME": "196:28", - "TTY": "?", - "USER": "root", - "VSZ": "2315004" - }, - "timestamp": "2015-03-17T00:01:33.997069", - "type": "Process" - }, - { - "annotations": { - "label": "fdd2bd0d0470" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/fdd2bd0d0470", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "INFLUXDB_VERSION=0.8.8", - "PRE_CREATE_DB=k8s;grafana" - ], - "ExposedPorts": { - "8083/tcp": {}, - "8084/tcp": {}, - "8086/tcp": {}, - "8090/tcp": {}, - "8099/tcp": {} - }, - "Hostname": "93847cf6a341", - "Image": "01ca504ee3d1de53f259146c27bb2c3f9a4531127e46eb156c615f9596769bdb", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "" - }, - "Container": "6852c8aea0dd1195b0478ed433b5711c674191afc85d3c15c3a07c357bd7b329", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "INFLUXDB_VERSION=0.8.8", - "PRE_CREATE_DB=k8s;grafana" - ], - "ExposedPorts": { - "8083/tcp": {}, - "8084/tcp": {}, - "8086/tcp": {}, - "8090/tcp": {}, - "8099/tcp": {} - }, - "Hostname": "93847cf6a341", - "Image": "01ca504ee3d1de53f259146c27bb2c3f9a4531127e46eb156c615f9596769bdb", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "" - }, - "Created": "2015-01-19T18:54:18.48135834Z", - "DockerVersion": "1.4.1", - "Id": "fdd2bd0d0470aa206c02a9f48a90efcf4835f15829dfc0d6cee6c55850c9a834", - "Os": "linux", - "Parent": "01ca504ee3d1de53f259146c27bb2c3f9a4531127e46eb156c615f9596769bdb", - "Size": 0, - "VirtualSize": 274660127 - }, - "timestamp": "2015-03-17T00:01:34.004199", - "type": "Image" - }, - { - "annotations": { - "label": "bd6afd430dba" - }, - "id": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {}, - "8083/tcp": {}, - "8086/tcp": {} - }, - "Hostname": "monitoring-influx-grafana-controller-gziey", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:38:59.045627366Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "80" - } - ], - "8083/tcp": [ - { - "HostIp": "", - "HostPort": "8083" - } - ], - "8086/tcp": [ - { - "HostIp": "", - "HostPort": "8086" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hostname", - "HostsPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hosts", - "Id": "bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.2.1", - "IPAddress": "10.244.2.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:02:04", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "80" - } - ], - "8083/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8083" - } - ], - "8086/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8086" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25172, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:38:59.731947599Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.933984", - "type": "Container" - }, - { - "annotations": { - "label": "25172" - }, - "id": "Process:bd6afd430dba/25172", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "25172", - "RSS": "420", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.023829", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.870098", - "type": "Image" - }, - { - "annotations": { - "label": "skydns-ls6k1" - }, - "id": "Pod:skydns-ls6k1", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "hostIP": "104.154.65.114", - "info": { - "POD": { - "containerID": "docker://df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.2.6", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:38:59Z" - } - } - }, - "etcd": { - "containerID": "docker://14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d", - "image": "quay.io/coreos/etcd:latest", - "imageID": "docker://c5f34efc44466ec7abb9a68af20d2f876ea691095747e7e5a62e890cdedadcdc", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:02Z" - } - } - }, - "kube2sky": { - "containerID": "docker://8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996", - "image": "kubernetes/kube2sky:1.0", - "imageID": "docker://3ea44ca9f1bd295f38fb1922e39d26e59294453ac0c5da9ae3c12cea5834c4ad", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:02Z" - } - } - }, - "skydns": { - "containerID": "docker://1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d", - "image": "kubernetes/skydns:2014-12-23-001", - "imageID": "docker://93f9564eaa3307440f3486b109c2fd39172d59a4b49ee4470d0b6141b4113388", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:02Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.2.6", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "command": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "image": "quay.io/coreos/etcd:latest", - "imagePullPolicy": "PullAlways", - "name": "etcd", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-domain=kubernetes.local" - ], - "image": "kubernetes/kube2sky:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kube2sky", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "image": "kubernetes/skydns:2014-12-23-001", - "imagePullPolicy": "PullIfNotPresent", - "name": "skydns", - "ports": [ - { - "containerPort": 53, - "name": "dns", - "protocol": "UDP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "Default", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "skydns-", - "id": "skydns-ls6k1", - "labels": { - "k8s-app": "skydns" - }, - "namespace": "default", - "resourceVersion": 34, - "selfLink": "/api/v1beta1/pods/skydns-ls6k1?namespace=default", - "uid": "eaecec5a-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.559330", - "type": "Pod" - }, - { - "annotations": { - "label": "1c6f3946b06a" - }, - "id": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/skydns" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "skydns-ls6k1", - "Image": "kubernetes/skydns:2014-12-23-001", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:02.472036043Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/skydns/1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d", - "Image": "93f9564eaa3307440f3486b109c2fd39172d59a4b49ee4470d0b6141b4113388", - "MountLabel": "", - "Name": "/k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/skydns", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25390, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:02.691537021Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/skydns/1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.039341", - "type": "Container" - }, - { - "annotations": { - "label": "25390" - }, - "id": "Process:1c6f3946b06a/25390", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "/skydns -machines=http://localhost:4001 -addr=0.0.0.0:53 -domain=kubernetes.local.", - "PID": "25390", - "RSS": "4088", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "5:57", - "TTY": "?", - "USER": "root", - "VSZ": "13908" - }, - "timestamp": "2015-03-17T00:01:34.230185", - "type": "Process" - }, - { - "annotations": { - "label": "93f9564eaa33" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/93f9564eaa33", - "properties": { - "Architecture": "amd64", - "Author": "Tim Hockin ", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/skydns" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "88f18f678e5d", - "Image": "881bfaf6568d614f274f68a4b088037819f56604f9e3711b6e3e5bc71250ec05", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "9a789310ecdffbe544a118aba3d6d8043abff9a4d3f5e589931625f6492a72f6", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/skydns]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/skydns" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "88f18f678e5d", - "Image": "881bfaf6568d614f274f68a4b088037819f56604f9e3711b6e3e5bc71250ec05", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-23T22:39:32.213674267Z", - "DockerVersion": "1.4.1", - "Id": "93f9564eaa3307440f3486b109c2fd39172d59a4b49ee4470d0b6141b4113388", - "Os": "linux", - "Parent": "881bfaf6568d614f274f68a4b088037819f56604f9e3711b6e3e5bc71250ec05", - "Size": 0, - "VirtualSize": 8971347 - }, - "timestamp": "2015-03-17T00:01:34.258096", - "type": "Image" - }, - { - "annotations": { - "label": "8f17a7d63d27" - }, - "id": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-domain=kubernetes.local" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "-domain=kubernetes.local" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/kube2sky" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "skydns-ls6k1", - "Image": "kubernetes/kube2sky:1.0", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:02.153334595Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/kube2sky/8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996", - "Image": "3ea44ca9f1bd295f38fb1922e39d26e59294453ac0c5da9ae3c12cea5834c4ad", - "MountLabel": "", - "Name": "/k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/kube2sky", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25373, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:02.392075903Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/kube2sky/8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.044275", - "type": "Container" - }, - { - "annotations": { - "label": "25373" - }, - "id": "Process:8f17a7d63d27/25373", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "/kube2sky -domain=kubernetes.local", - "PID": "25373", - "RSS": "6032", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "1:06", - "TTY": "?", - "USER": "root", - "VSZ": "13332" - }, - "timestamp": "2015-03-17T00:02:49.511383", - "type": "Process" - }, - { - "annotations": { - "label": "3ea44ca9f1bd" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3ea44ca9f1bd", - "properties": { - "Architecture": "amd64", - "Author": "Tim Hockin ", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/kube2sky" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "665a61a9491d", - "Image": "a8cca3d55334f03efffc702ed3db2ffce9ec74e79d9401b399a0dab6212cdbd7", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "40e72afa696914d791ffa4ab5b3c0ff1e19f45e8400de0b0186d17a5c4818847", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/kube2sky]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/kube2sky" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "665a61a9491d", - "Image": "a8cca3d55334f03efffc702ed3db2ffce9ec74e79d9401b399a0dab6212cdbd7", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-11-17T04:21:36.013464763Z", - "DockerVersion": "1.3.1", - "Id": "3ea44ca9f1bd295f38fb1922e39d26e59294453ac0c5da9ae3c12cea5834c4ad", - "Os": "linux", - "Parent": "a8cca3d55334f03efffc702ed3db2ffce9ec74e79d9401b399a0dab6212cdbd7", - "Size": 0, - "VirtualSize": 7724289 - }, - "timestamp": "2015-03-17T00:01:34.330662", - "type": "Image" - }, - { - "annotations": { - "label": "14bb8d474c88" - }, - "id": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "properties": { - "AppArmorProfile": "", - "Args": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/etcd" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "2379/tcp": {}, - "2380/tcp": {}, - "4001/tcp": {}, - "7001/tcp": {} - }, - "Hostname": "skydns-ls6k1", - "Image": "quay.io/coreos/etcd:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:02.035986492Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/etcd/14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d", - "Image": "c5f34efc44466ec7abb9a68af20d2f876ea691095747e7e5a62e890cdedadcdc", - "MountLabel": "", - "Name": "/k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/etcd", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25341, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:02.092518697Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/etcd/14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.048694", - "type": "Container" - }, - { - "annotations": { - "label": "25341" - }, - "id": "Process:14bb8d474c88/25341", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "/etcd /etcd -bind-addr=127.0.0.1 -peer-bind-addr=127.0.0.1", - "PID": "25341", - "RSS": "13200", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "20:20", - "TTY": "?", - "USER": "root", - "VSZ": "25788" - }, - "timestamp": "2015-03-17T00:01:34.351085", - "type": "Process" - }, - { - "annotations": { - "label": "c5f34efc4446" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/c5f34efc4446", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/etcd" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "2379/tcp": {}, - "2380/tcp": {}, - "4001/tcp": {}, - "7001/tcp": {} - }, - "Hostname": "70f56fc06e1f", - "Image": "78d63abf03b980919deaac3454a80496559da893948f427868492fa8a0d717ab", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "84dab35d199788f0f9144cc684917a0a17cf3764bdaae768ff5e59a1f0773c79", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/etcd]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/etcd" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "2379/tcp": {}, - "2380/tcp": {}, - "4001/tcp": {}, - "7001/tcp": {} - }, - "Hostname": "70f56fc06e1f", - "Image": "78d63abf03b980919deaac3454a80496559da893948f427868492fa8a0d717ab", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-11-19T19:59:17.860180047Z", - "DockerVersion": "1.2.0", - "Id": "c5f34efc44466ec7abb9a68af20d2f876ea691095747e7e5a62e890cdedadcdc", - "Os": "linux", - "Parent": "78d63abf03b980919deaac3454a80496559da893948f427868492fa8a0d717ab", - "Size": 0, - "VirtualSize": 20152592 - }, - "timestamp": "2015-03-17T00:01:34.356938", - "type": "Image" - }, - { - "annotations": { - "label": "df65efb615d5" - }, - "id": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "skydns-ls6k1", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:38:59.274459381Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hostname", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.2.1", - "IPAddress": "10.244.2.6", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:02:06", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25074, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:38:59.546355673Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.151958", - "type": "Container" - }, - { - "annotations": { - "label": "25074" - }, - "id": "Process:df65efb615d5/25074", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "25074", - "RSS": "420", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.373261", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.870098", - "type": "Image" - }, - { - "annotations": { - "label": "kubernetes-minion-tf8u" - }, - "id": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "146.148.77.250", - "id": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "resourceVersion": 1231196, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-tf8u.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-02-24T22:37:30Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e435dbd9-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "frontend-controller-vjzjp" - }, - "id": "Pod:frontend-controller-vjzjp", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "hostIP": "146.148.77.250", - "info": { - "POD": { - "containerID": "docker://c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.3.4", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:25Z" - } - } - }, - "php-redis": { - "containerID": "docker://9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11", - "image": "kubernetes/example-guestbook-php-redis", - "imageID": "docker://5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:26Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.3.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "frontend-controller-", - "id": "frontend-controller-vjzjp", - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - }, - "namespace": "default", - "resourceVersion": 2222, - "selfLink": "/api/v1beta1/pods/frontend-controller-vjzjp?namespace=default", - "uid": "14a3cb0c-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.408110", - "type": "Pod" - }, - { - "annotations": { - "label": "c00924f5248b" - }, - "id": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-vjzjp", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.108160677Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/hostname", - "HostsPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/hosts", - "Id": "c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.3.1", - "IPAddress": "10.244.3.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:03:04", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8000" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4083, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:25.545202435Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.445394", - "type": "Container" - }, - { - "annotations": { - "label": "4083" - }, - "id": "Process:c00924f5248b/4083", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "4083", - "RSS": "432", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.544166", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:34.549147", - "type": "Image" - }, - { - "annotations": { - "label": "9a066b06d5d0" - }, - "id": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-vjzjp", - "Image": "kubernetes/example-guestbook-php-redis", - "MacAddress": "", - "Memory": 50000000, - "MemorySwap": -1, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.9813196Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/14a3cb0c-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/hosts", - "Id": "9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11", - "Image": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "MountLabel": "", - "Name": "/k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4255, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:26.715823674Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/14a3cb0c-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.454177", - "type": "Container" - }, - { - "annotations": { - "label": "4255" - }, - "id": "Process:9a066b06d5d0/4255", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "4255", - "RSS": "512", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4412" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4293" - }, - "id": "Process:9a066b06d5d0/4293", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "/usr/bin/python /usr/bin/supervisord -n", - "PID": "4293", - "RSS": "11672", - "START": "Feb25", - "STAT": "S", - "TIME": "4:24", - "TTY": "?", - "USER": "root", - "VSZ": "53152" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4330" - }, - "id": "Process:9a066b06d5d0/4330", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4330", - "RSS": "12732", - "START": "Feb25", - "STAT": "S", - "TIME": "0:55", - "TTY": "?", - "USER": "root", - "VSZ": "259972" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4332" - }, - "id": "Process:9a066b06d5d0/4332", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4332", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260036" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4333" - }, - "id": "Process:9a066b06d5d0/4333", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4333", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260020" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4334" - }, - "id": "Process:9a066b06d5d0/4334", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4334", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4335" - }, - "id": "Process:9a066b06d5d0/4335", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4335", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4336" - }, - "id": "Process:9a066b06d5d0/4336", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4336", - "RSS": "8652", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260112" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "22522" - }, - "id": "Process:9a066b06d5d0/22522", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "22522", - "RSS": "7456", - "START": "Feb28", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "5630952871a3" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/5630952871a3", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "63db4df258d14794d7072e009c12443c790c09fb9c25119ec1d06a6197ab85aa", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-09T19:16:28.984874361Z", - "DockerVersion": "1.3.0", - "Id": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "Os": "linux", - "Parent": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "Size": 0, - "VirtualSize": 382800212 - }, - "timestamp": "2015-03-17T00:01:34.580210", - "type": "Image" - }, - { - "annotations": { - "label": "monitoring-heapster-controller-oh43e" - }, - "id": "Pod:monitoring-heapster-controller-oh43e", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "hostIP": "146.148.77.250", - "info": { - "POD": { - "containerID": "docker://ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.3.5", - "ready": false, - "restartCount": 4, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:25Z" - } - } - }, - "heapster": { - "containerID": "docker://3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2", - "image": "vish/heapster:canary", - "imageID": "docker://6d053b2331f94bc79d816dbaef5ff46873f56e51deea255ddbde7120cada43cc", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:26Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.3.5", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "env": [ - { - "key": "INFLUXDB_HOST", - "name": "INFLUXDB_HOST", - "value": "monitoring-influxdb" - } - ], - "image": "vish/heapster:canary", - "imagePullPolicy": "PullIfNotPresent", - "name": "heapster", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "monitoring-heapster-controller-", - "id": "monitoring-heapster-controller-oh43e", - "labels": { - "name": "heapster", - "uses": "monitoring-influxdb" - }, - "namespace": "default", - "resourceVersion": 32, - "selfLink": "/api/v1beta1/pods/monitoring-heapster-controller-oh43e?namespace=default", - "uid": "eaecb958-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.408110", - "type": "Pod" - }, - { - "annotations": { - "label": "3a528bad8247" - }, - "id": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "INFLUXDB_HOST=monitoring-influxdb", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "monitoring-heapster-controller-oh43e", - "Image": "vish/heapster:canary", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:26.012057593Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecb958-b7cb-11e4-9018-42010af0f3f2/containers/heapster/3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/hosts", - "Id": "3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2", - "Image": "6d053b2331f94bc79d816dbaef5ff46873f56e51deea255ddbde7120cada43cc", - "MountLabel": "", - "Name": "/k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/run.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4246, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:26.41931187Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecb958-b7cb-11e4-9018-42010af0f3f2/containers/heapster/3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.596550", - "type": "Container" - }, - { - "annotations": { - "label": "4246" - }, - "id": "Process:3a528bad8247/4246", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "4246", - "RSS": "604", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "18004" - }, - "timestamp": "2015-03-17T00:01:34.653889", - "type": "Process" - }, - { - "annotations": { - "label": "4276" - }, - "id": "Process:3a528bad8247/4276", - "properties": { - "%CPU": "0.2", - "%MEM": "0.3", - "COMMAND": "/usr/bin/heapster --kubernetes_master 10.0.0.1:80 --sink influxdb --sink_influxdb_host 10.0.50.127:80", - "PID": "4276", - "RSS": "12600", - "START": "Feb25", - "STAT": "Sl", - "TIME": "59:02", - "TTY": "?", - "USER": "root", - "VSZ": "637408" - }, - "timestamp": "2015-03-17T00:01:34.653889", - "type": "Process" - }, - { - "annotations": { - "label": "6d053b2331f9" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6d053b2331f9", - "properties": { - "Architecture": "amd64", - "Author": "vishnuk@google.com", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "f22711318734", - "Image": "7fc80d85e45f67f5822b469aeb2b90c8bf14be9c4fe86ad0e376269d0adfe8ee", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "211f0b53df0f8036138b0ce1d8f101ad32a25c185e82d1c6c9bdfb2fc28b3565", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "f22711318734", - "Image": "7fc80d85e45f67f5822b469aeb2b90c8bf14be9c4fe86ad0e376269d0adfe8ee", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-18T23:42:04.849887009Z", - "DockerVersion": "1.4.1", - "Id": "6d053b2331f94bc79d816dbaef5ff46873f56e51deea255ddbde7120cada43cc", - "Os": "linux", - "Parent": "7fc80d85e45f67f5822b469aeb2b90c8bf14be9c4fe86ad0e376269d0adfe8ee", - "Size": 0, - "VirtualSize": 211046824 - }, - "timestamp": "2015-03-17T00:01:34.660083", - "type": "Image" - }, - { - "annotations": { - "label": "ae0effbebe7e" - }, - "id": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "monitoring-heapster-controller-oh43e", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.229652938Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/hostname", - "HostsPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/hosts", - "Id": "ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.3.1", - "IPAddress": "10.244.3.5", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:03:05", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4082, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:25.58370912Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.613034", - "type": "Container" - }, - { - "annotations": { - "label": "4082" - }, - "id": "Process:ae0effbebe7e/4082", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "4082", - "RSS": "432", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.680611", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:34.549147", - "type": "Image" - }, - { - "annotations": { - "label": "redis-slave-controller-dnyxx" - }, - "id": "Pod:redis-slave-controller-dnyxx", - "properties": { - "creationTimestamp": "2015-02-19T01:37:34Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "hostIP": "146.148.77.250", - "info": { - "POD": { - "containerID": "docker://4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.3.6", - "ready": false, - "restartCount": 4, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:25Z" - } - } - }, - "slave": { - "containerID": "docker://0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08", - "image": "brendanburns/redis-slave", - "imageID": "docker://81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "ready": true, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:26Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.3.6", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 200, - "image": "brendanburns/redis-slave", - "imagePullPolicy": "PullIfNotPresent", - "name": "slave", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6380, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.2" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "redis-slave-controller-", - "id": "redis-slave-controller-dnyxx", - "labels": { - "name": "redisslave", - "uses": "redis-master" - }, - "namespace": "default", - "resourceVersion": 2164, - "selfLink": "/api/v1beta1/pods/redis-slave-controller-dnyxx?namespace=default", - "uid": "e104806a-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.408110", - "type": "Pod" - }, - { - "annotations": { - "label": "0219b8fac88d" - }, - "id": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 204, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-dnyxx", - "Image": "brendanburns/redis-slave", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:21:26.517282879Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/e104806a-b7d7-11e4-9018-42010af0f3f2/containers/slave/0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/hosts", - "Id": "0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08", - "Image": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "MountLabel": "", - "Name": "/k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4286, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:26.884370926Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/bdd95a3bf51ef4f8db587f882b46885177cc6a9969fa80a6cbfd9295356db7b0", - "/dev/termination-log": "/var/lib/kubelet/pods/e104806a-b7d7-11e4-9018-42010af0f3f2/containers/slave/0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.697142", - "type": "Container" - }, - { - "annotations": { - "label": "4286" - }, - "id": "Process:0219b8fac88d/4286", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "4286", - "RSS": "84", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4452" - }, - "timestamp": "2015-03-17T00:01:34.756307", - "type": "Process" - }, - { - "annotations": { - "label": "4308" - }, - "id": "Process:0219b8fac88d/4308", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "4308", - "RSS": "600", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "17996" - }, - "timestamp": "2015-03-17T00:01:34.756307", - "type": "Process" - }, - { - "annotations": { - "label": "4309" - }, - "id": "Process:0219b8fac88d/4309", - "properties": { - "%CPU": "0.1", - "%MEM": "0.0", - "COMMAND": "redis-server *:6379", - "PID": "4309", - "RSS": "2376", - "START": "Feb25", - "STAT": "Sl", - "TIME": "28:38", - "TTY": "?", - "USER": "root", - "VSZ": "35180" - }, - "timestamp": "2015-03-17T00:01:34.756307", - "type": "Process" - }, - { - "annotations": { - "label": "81b1b696a77a" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/81b1b696a77a", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "9c0df3e46915e0be5819bbdab972ff9807a479beee8e9c79d4e392e12894750d", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2014-11-16T03:37:21.890022087Z", - "DockerVersion": "1.3.0", - "Id": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "Os": "linux", - "Parent": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "Size": 0, - "VirtualSize": 434171778 - }, - "timestamp": "2015-03-17T00:01:34.763462", - "type": "Image" - }, - { - "annotations": { - "label": "4cec5365e5cc" - }, - "id": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-dnyxx", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.365963476Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/hostname", - "HostsPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/hosts", - "Id": "4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.3.1", - "IPAddress": "10.244.3.6", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:03:06", - "PortMapping": null, - "Ports": { - "6379/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "6380" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4179, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:25.690399743Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.723437", - "type": "Container" - }, - { - "annotations": { - "label": "4179" - }, - "id": "Process:4cec5365e5cc/4179", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "4179", - "RSS": "432", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.778011", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:34.549147", - "type": "Image" - }, - { - "annotations": { - "label": "elasticsearch-logging" - }, - "id": "Service:elasticsearch-logging", - "properties": { - "containerPort": "es-port", - "createExternalLoadBalancer": true, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "elasticsearch-logging", - "labels": { - "name": "elasticsearch-logging" - }, - "namespace": "default", - "port": 9200, - "portalIP": "10.0.126.205", - "protocol": "TCP", - "publicIPs": [ - "146.148.56.136" - ], - "resourceVersion": 68, - "selector": { - "name": "elasticsearch-logging" - }, - "selfLink": "/api/v1beta1/services/elasticsearch-logging?namespace=default", - "sessionAffinity": "None", - "uid": "e8804c83-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "kibana-logging" - }, - "id": "Service:kibana-logging", - "properties": { - "containerPort": "kibana-port", - "createExternalLoadBalancer": true, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "kibana-logging", - "labels": { - "name": "kibana-logging" - }, - "namespace": "default", - "port": 5601, - "portalIP": "10.0.51.28", - "protocol": "TCP", - "publicIPs": [ - "130.211.172.131" - ], - "resourceVersion": 69, - "selector": { - "name": "kibana-logging" - }, - "selfLink": "/api/v1beta1/services/kibana-logging?namespace=default", - "sessionAffinity": "None", - "uid": "e87b2184-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "kubernetes" - }, - "id": "Service:kubernetes", - "properties": { - "containerPort": 0, - "creationTimestamp": "2015-02-19T00:11:42Z", - "id": "kubernetes", - "labels": { - "component": "apiserver", - "provider": "kubernetes" - }, - "namespace": "default", - "port": 443, - "portalIP": "10.0.0.2", - "protocol": "TCP", - "resourceVersion": 4, - "selector": null, - "selfLink": "/api/v1beta1/services/kubernetes?namespace=default", - "sessionAffinity": "None", - "uid": "e221251b-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "kubernetes-ro" - }, - "id": "Service:kubernetes-ro", - "properties": { - "containerPort": 0, - "creationTimestamp": "2015-02-19T00:11:42Z", - "id": "kubernetes-ro", - "labels": { - "component": "apiserver", - "provider": "kubernetes" - }, - "namespace": "default", - "port": 80, - "portalIP": "10.0.0.1", - "protocol": "TCP", - "resourceVersion": 5, - "selector": null, - "selfLink": "/api/v1beta1/services/kubernetes-ro?namespace=default", - "sessionAffinity": "None", - "uid": "e223bbf7-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "monitoring-grafana" - }, - "id": "Service:monitoring-grafana", - "properties": { - "containerPort": 80, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "monitoring-grafana", - "namespace": "default", - "port": 80, - "portalIP": "10.0.48.147", - "protocol": "TCP", - "resourceVersion": 22, - "selector": { - "name": "influxGrafana" - }, - "selfLink": "/api/v1beta1/services/monitoring-grafana?namespace=default", - "sessionAffinity": "None", - "uid": "e885ee4b-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "monitoring-heapster" - }, - "id": "Service:monitoring-heapster", - "properties": { - "containerPort": 8082, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "monitoring-heapster", - "namespace": "default", - "port": 80, - "portalIP": "10.0.85.65", - "protocol": "TCP", - "resourceVersion": 19, - "selector": { - "name": "heapster" - }, - "selfLink": "/api/v1beta1/services/monitoring-heapster?namespace=default", - "sessionAffinity": "None", - "uid": "e883d705-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "monitoring-influxdb" - }, - "id": "Service:monitoring-influxdb", - "properties": { - "containerPort": 8086, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "monitoring-influxdb", - "namespace": "default", - "port": 80, - "portalIP": "10.0.50.127", - "protocol": "TCP", - "resourceVersion": 21, - "selector": { - "name": "influxGrafana" - }, - "selfLink": "/api/v1beta1/services/monitoring-influxdb?namespace=default", - "sessionAffinity": "None", - "uid": "e885ceda-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "redis-master" - }, - "id": "Service:redis-master", - "properties": { - "containerPort": 6379, - "creationTimestamp": "2015-02-19T01:36:53Z", - "id": "redis-master", - "labels": { - "name": "redis-master" - }, - "namespace": "default", - "port": 6379, - "portalIP": "10.0.254.112", - "protocol": "TCP", - "resourceVersion": 2145, - "selector": { - "name": "redis-master" - }, - "selfLink": "/api/v1beta1/services/redis-master?namespace=default", - "sessionAffinity": "None", - "uid": "c81f5fae-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "redisslave" - }, - "id": "Service:redisslave", - "properties": { - "containerPort": 6379, - "creationTimestamp": "2015-02-19T01:38:46Z", - "id": "redisslave", - "labels": { - "name": "redisslave" - }, - "namespace": "default", - "port": 6379, - "portalIP": "10.0.78.161", - "protocol": "TCP", - "resourceVersion": 2209, - "selector": { - "name": "redisslave" - }, - "selfLink": "/api/v1beta1/services/redisslave?namespace=default", - "sessionAffinity": "None", - "uid": "0bac519a-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "skydns" - }, - "id": "Service:skydns", - "properties": { - "containerPort": 53, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "skydns", - "labels": { - "k8s-app": "skydns" - }, - "namespace": "default", - "port": 53, - "portalIP": "10.0.0.10", - "protocol": "UDP", - "resourceVersion": 20, - "selector": { - "k8s-app": "skydns" - }, - "selfLink": "/api/v1beta1/services/skydns?namespace=default", - "sessionAffinity": "None", - "uid": "e885b8f7-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "elasticsearch-logging-controller" - }, - "id": "ReplicationController:elasticsearch-logging-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "dockerfile/elasticsearch", - "imagePullPolicy": "PullIfNotPresent", - "name": "elasticsearch-logging", - "ports": [ - { - "containerPort": 9200, - "name": "es-port", - "protocol": "TCP" - }, - { - "containerPort": 9300, - "name": "es-transport-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log", - "volumeMounts": [ - { - "mountPath": "/data", - "name": "es-persistent-storage", - "path": "/data" - } - ] - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": [ - { - "name": "es-persistent-storage", - "source": { - "emptyDir": {}, - "gitRepo": null, - "hostDir": null, - "persistentDisk": null, - "secret": null - } - } - ] - } - }, - "labels": { - "name": "elasticsearch-logging" - } - }, - "replicaSelector": { - "name": "elasticsearch-logging" - }, - "replicas": 1 - }, - "id": "elasticsearch-logging-controller", - "labels": { - "name": "elasticsearch-logging" - }, - "namespace": "default", - "resourceVersion": 23, - "selfLink": "/api/v1beta1/replicationControllers/elasticsearch-logging-controller?namespace=default", - "uid": "e88b3b49-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "frontend-controller" - }, - "id": "ReplicationController:frontend-controller", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 3 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - } - }, - "replicaSelector": { - "name": "frontend" - }, - "replicas": 3 - }, - "id": "frontend-controller", - "labels": { - "name": "frontend" - }, - "namespace": "default", - "resourceVersion": 2219, - "selfLink": "/api/v1beta1/replicationControllers/frontend-controller?namespace=default", - "uid": "149cf3ac-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "kibana-logging-controller" - }, - "id": "ReplicationController:kibana-logging-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/kibana:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kibana-logging", - "ports": [ - { - "containerPort": 80, - "name": "kibana-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "kibana-logging" - } - }, - "replicaSelector": { - "name": "kibana-logging" - }, - "replicas": 1 - }, - "id": "kibana-logging-controller", - "labels": { - "name": "kibana-logging" - }, - "namespace": "default", - "resourceVersion": 18, - "selfLink": "/api/v1beta1/replicationControllers/kibana-logging-controller?namespace=default", - "uid": "e883e7aa-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "monitoring-heapster-controller" - }, - "id": "ReplicationController:monitoring-heapster-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "env": [ - { - "key": "INFLUXDB_HOST", - "name": "INFLUXDB_HOST", - "value": "monitoring-influxdb" - } - ], - "image": "vish/heapster:canary", - "imagePullPolicy": "PullIfNotPresent", - "name": "heapster", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "heapster", - "uses": "monitoring-influxdb" - } - }, - "replicaSelector": { - "name": "heapster" - }, - "replicas": 1 - }, - "id": "monitoring-heapster-controller", - "labels": { - "name": "heapster" - }, - "namespace": "default", - "resourceVersion": 17, - "selfLink": "/api/v1beta1/replicationControllers/monitoring-heapster-controller?namespace=default", - "uid": "e8830cb0-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "monitoring-influx-grafana-controller" - }, - "id": "ReplicationController:monitoring-influx-grafana-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/heapster_influxdb:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "influxdb", - "ports": [ - { - "containerPort": 8083, - "hostPort": 8083, - "protocol": "TCP" - }, - { - "containerPort": 8086, - "hostPort": 8086, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "env": [ - { - "key": "HTTP_USER", - "name": "HTTP_USER", - "value": "admin" - }, - { - "key": "HTTP_PASS", - "name": "HTTP_PASS", - "value": "**None**" - } - ], - "image": "kubernetes/heapster_grafana:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "grafana", - "ports": [ - { - "containerPort": 80, - "hostPort": 80, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "influxGrafana" - } - }, - "replicaSelector": { - "name": "influxGrafana" - }, - "replicas": 1 - }, - "id": "monitoring-influx-grafana-controller", - "labels": { - "name": "influxGrafana" - }, - "namespace": "default", - "resourceVersion": 24, - "selfLink": "/api/v1beta1/replicationControllers/monitoring-influx-grafana-controller?namespace=default", - "uid": "e88bcebd-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "redis-slave-controller" - }, - "id": "ReplicationController:redis-slave-controller", - "properties": { - "creationTimestamp": "2015-02-19T01:37:34Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 2 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 200, - "image": "brendanburns/redis-slave", - "imagePullPolicy": "PullIfNotPresent", - "name": "slave", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6380, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.2" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "redisslave", - "uses": "redis-master" - } - }, - "replicaSelector": { - "name": "redisslave" - }, - "replicas": 2 - }, - "id": "redis-slave-controller", - "labels": { - "name": "redisslave" - }, - "namespace": "default", - "resourceVersion": 2163, - "selfLink": "/api/v1beta1/replicationControllers/redis-slave-controller?namespace=default", - "uid": "e0fe9d98-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "skydns" - }, - "id": "ReplicationController:skydns", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "command": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "image": "quay.io/coreos/etcd:latest", - "imagePullPolicy": "PullAlways", - "name": "etcd", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-domain=kubernetes.local" - ], - "image": "kubernetes/kube2sky:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kube2sky", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "image": "kubernetes/skydns:2014-12-23-001", - "imagePullPolicy": "PullIfNotPresent", - "name": "skydns", - "ports": [ - { - "containerPort": 53, - "name": "dns", - "protocol": "UDP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "Default", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "k8s-app": "skydns" - } - }, - "replicaSelector": { - "k8s-app": "skydns" - }, - "replicas": 1 - }, - "id": "skydns", - "labels": { - "k8s-app": "skydns" - }, - "namespace": "default", - "resourceVersion": 25, - "selfLink": "/api/v1beta1/replicationControllers/skydns?namespace=default", - "uid": "e88d6fb4-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - } - ], - "success": true, - "timestamp": "2015-03-17T00:04:18.106157" -} \ No newline at end of file diff --git a/www/master/components/dashboard/js/modules/services/podsMock.js b/www/master/components/dashboard/js/modules/services/podsMock.js index f43635ef3b3b9..e7e50478a9516 100644 --- a/www/master/components/dashboard/js/modules/services/podsMock.js +++ b/www/master/components/dashboard/js/modules/services/podsMock.js @@ -12,57 +12,93 @@ */ function PodDataService($q) { var pods = { - "kind": "PodList", - "creationTimestamp": null, - "selfLink": "/api/v1beta1/pods", - "resourceVersion": 166552, - "apiVersion": "v1beta1", - "items": [{ - "id": "hello", - "uid": "0fe3644e-ab53-11e4-8ae8-061695c59fcf", - "creationTimestamp": "2015-02-03T03:16:36Z", - "selfLink": "/api/v1beta1/pods/hello?namespace=default", - "resourceVersion": 466, + "kind": "Pod", + "apiVersion": "v1beta3", + "metadata": { + "name": "redis-master-c0r1n", + "generateName": "redis-master-", "namespace": "default", - "labels": {"environment": "testing", "name": "hello"}, - "desiredState": { - "manifest": { - "version": "v1beta2", - "id": "", - "volumes": null, - "containers": [{ - "name": "hello", - "image": "quay.io/kelseyhightower/hello", - "ports": [{"hostPort": 80, "containerPort": 80, "protocol": "TCP"}], - "imagePullPolicy": "PullIfNotPresent" - }], - "restartPolicy": {"always": {}}, - "dnsPolicy": "ClusterFirst" - } + "selfLink": "/api/v1beta3/namespaces/default/pods/redis-master-c0r1n", + "uid": "f12ddfaf-ff77-11e4-8f2d-080027213276", + "resourceVersion": "39", + "creationTimestamp": "2015-05-21T05:12:14Z", + "labels": { + "name": "redis-master" }, - "currentState": { - "manifest": {"version": "", "id": "", "volumes": null, "containers": null, "restartPolicy": {}}, - "status": "Running", - "host": "172.31.12.204", - "podIP": "10.244.73.2", - "info": { - "hello": { - "state": {"running": {"startedAt": "2015-02-03T03:16:51Z"}}, - "restartCount": 0, - "image": "quay.io/kelseyhightower/hello", - "containerID": "docker://96ade8ff30a44c4489969eaf343a7899317671b07a9766ecd0963e9b41501256" - }, - "net": { - "state": {"running": {"startedAt": "2015-02-03T03:16:41Z"}}, - "restartCount": 0, - "podIP": "10.244.73.2", - "image": "kubernetes/pause:latest", - "containerID": "docker://93d32603cafbff7165dadb1d4527899c24246bca2f5e6770b8297fd3721b272c" - } - } + "annotations": { + "kubernetes.io/created-by": "{\"kind\":\"SerializedReference\",\"apiVersion\":\"v1beta3\",\"reference\":{\"kind\":\"ReplicationController\",\"namespace\":\"default\",\"name\":\"redis-master\",\"uid\":\"f12969e0-ff77-11e4-8f2d-080027213276\",\"apiVersion\":\"v1beta3\",\"resourceVersion\":\"26\"}}" } - }] - }; + }, + "spec": { + "volumes": [ + { + "name": "default-token-zb4rq", + "secret": { + "secretName": "default-token-zb4rq" + } + } + ], + "containers": [ + { + "name": "master", + "image": "redis", + "ports": [ + { + "containerPort": 6379, + "protocol": "TCP" + } + ], + "resources": {}, + "volumeMounts": [ + { + "name": "default-token-zb4rq", + "readOnly": true, + "mountPath": "/var/run/secrets/kubernetes.io/serviceaccount" + } + ], + "terminationMessagePath": "/dev/termination-log", + "imagePullPolicy": "IfNotPresent", + "capabilities": {}, + "securityContext": { + "capabilities": {}, + "privileged": false + } + } + ], + "restartPolicy": "Always", + "dnsPolicy": "ClusterFirst", + "serviceAccount": "default", + "host": "127.0.0.1" + }, + "status": { + "phase": "Running", + "Condition": [ + { + "type": "Ready", + "status": "True" + } + ], + "hostIP": "127.0.0.1", + "podIP": "172.17.0.1", + "startTime": "2015-05-21T05:12:14Z", + "containerStatuses": [ + { + "name": "master", + "state": { + "running": { + "startedAt": "2015-05-21T05:12:14Z" + } + }, + "lastState": {}, + "ready": true, + "restartCount": 0, + "image": "redis", + "imageID": "docker://95af5842ddb9b03f7c6ec7601e65924cec516fcedd7e590ae31660057085cf67", + "containerID": "docker://ae2a1e0a91a8b1015191a0b8e2ce8c55a86fb1a9a2b1e8e3b29430c9d93c8c09" + } + ] + } +}; // Uses promises return { diff --git a/www/master/components/dashboard/js/modules/services/replicationControllersMock.js b/www/master/components/dashboard/js/modules/services/replicationControllersMock.js index 20372d633e41a..1f81a05a597e0 100644 --- a/www/master/components/dashboard/js/modules/services/replicationControllersMock.js +++ b/www/master/components/dashboard/js/modules/services/replicationControllersMock.js @@ -13,13 +13,68 @@ */ function ReplicationControllerDataService($q) { var replicationControllers = { - "kind": "ReplicationControllerList", - "creationTimestamp": null, - "selfLink": "/api/v1beta1/replicationControllers", - "resourceVersion": 166552, - "apiVersion": "v1beta1", - "items": [] - }; + "kind": "List", + "apiVersion": "v1beta3", + "metadata": {}, + "items": [ + { + "kind": "ReplicationController", + "apiVersion": "v1beta3", + "metadata": { + "name": "redis-master", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/replicationcontrollers/redis-master", + "uid": "f12969e0-ff77-11e4-8f2d-080027213276", + "resourceVersion": "28", + "creationTimestamp": "2015-05-21T05:12:14Z", + "labels": { + "name": "redis-master" + } + }, + "spec": { + "replicas": 1, + "selector": { + "name": "redis-master" + }, + "template": { + "metadata": { + "creationTimestamp": null, + "labels": { + "name": "redis-master" + } + }, + "spec": { + "containers": [ + { + "name": "master", + "image": "redis", + "ports": [ + { + "containerPort": 6379, + "protocol": "TCP" + } + ], + "resources": {}, + "terminationMessagePath": "/dev/termination-log", + "imagePullPolicy": "IfNotPresent", + "capabilities": {}, + "securityContext": { + "capabilities": {}, + "privileged": false + } + } + ], + "restartPolicy": "Always", + "dnsPolicy": "ClusterFirst", + "serviceAccount": "" + } + } + }, + "status": { + "replicas": 1 + } + } + ]}; // Uses promises return { diff --git a/www/master/components/dashboard/js/modules/services/servicesMock.js b/www/master/components/dashboard/js/modules/services/servicesMock.js index bbbeb8ab77797..308396548c107 100644 --- a/www/master/components/dashboard/js/modules/services/servicesMock.js +++ b/www/master/components/dashboard/js/modules/services/servicesMock.js @@ -12,44 +12,96 @@ */ function ServiceDataService($q) { var services = { - "kind": "ServiceList", - "creationTimestamp": null, - "selfLink": "/api/v1beta1/services", - "resourceVersion": 166552, - "apiVersion": "v1beta1", - "items": [ + "kind": "List", + "apiVersion": "v1beta3", + "metadata": {}, + "items": [ { - "id": "kubernetes", - "uid": "626dd08d-ab51-11e4-8ae8-061695c59fcf", - "creationTimestamp": "2015-02-03T03:04:36Z", - "selfLink": "/api/v1beta1/services/kubernetes?namespace=default", - "resourceVersion": 11, - "namespace": "default", - "port": 443, - "protocol": "TCP", - "labels": {"component": "apiserver", "provider": "kubernetes"}, - "selector": null, - "containerPort": 0, - "portalIP": "10.244.66.215", - "sessionAffinity": "None" + "kind": "Service", + "apiVersion": "v1beta3", + "metadata": { + "name": "kubernetes", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/services/kubernetes", + "resourceVersion": "6", + "creationTimestamp": null, + "labels": { + "component": "apiserver", + "provider": "kubernetes" + } + }, + "spec": { + "ports": [ + { + "protocol": "TCP", + "port": 443, + "targetPort": 443 + } + ], + "portalIP": "10.0.0.2", + "sessionAffinity": "None" + }, + "status": {} }, { - "id": "kubernetes-ro", - "uid": "626f9584-ab51-11e4-8ae8-061695c59fcf", - "creationTimestamp": "2015-02-03T03:04:36Z", - "selfLink": "/api/v1beta1/services/kubernetes-ro?namespace=default", - "resourceVersion": 12, - "namespace": "default", - "port": 80, - "protocol": "TCP", - "labels": {"component": "apiserver", "provider": "kubernetes"}, - "selector": null, - "containerPort": 0, - "portalIP": "10.244.182.142", - "sessionAffinity": "None" + "kind": "Service", + "apiVersion": "v1beta3", + "metadata": { + "name": "kubernetes-ro", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/services/kubernetes-ro", + "resourceVersion": "8", + "creationTimestamp": null, + "labels": { + "component": "apiserver", + "provider": "kubernetes" + } + }, + "spec": { + "ports": [ + { + "protocol": "TCP", + "port": 80, + "targetPort": 80 + } + ], + "portalIP": "10.0.0.1", + "sessionAffinity": "None" + }, + "status": {} + }, + { + "kind": "Service", + "apiVersion": "v1beta3", + "metadata": { + "name": "redis-master", + "namespace": "default", + "selfLink": "/api/v1beta3/namespaces/default/services/redis-master", + "uid": "a6fde246-ff78-11e4-8f2d-080027213276", + "resourceVersion": "72", + "creationTimestamp": "2015-05-21T05:17:19Z", + "labels": { + "name": "redis-master" + } + }, + "spec": { + "ports": [ + { + "protocol": "TCP", + "port": 6379, + "targetPort": 6379 + } + ], + "selector": { + "name": "redis-master" + }, + "portalIP": "10.0.0.124", + "sessionAffinity": "None" + }, + "status": {} } - ] - }; + ] +}; // Uses promises return { diff --git a/www/master/components/dashboard/less/dashboard.less b/www/master/components/dashboard/less/dashboard.less index 40ac31b6e2479..a9eebdd3d1bd0 100755 --- a/www/master/components/dashboard/less/dashboard.less +++ b/www/master/components/dashboard/less/dashboard.less @@ -70,4 +70,8 @@ } } } + + .align-top tbody { + vertical-align: top; + } } diff --git a/www/master/gulpfile.js b/www/master/gulpfile.js index fa2c673e4cdc6..08a3f6e4870c0 100644 --- a/www/master/gulpfile.js +++ b/www/master/gulpfile.js @@ -348,7 +348,6 @@ gulp.task('copy:shared-assets', function() { del.sync([build.assets], {force: true}); return gulp.src(source.assets.source, {base: 'shared/assets'}) - .pipe(expect(source.assets.source)) .pipe(gulp.dest(build.assets)); }); diff --git a/www/master/shared/assets/.gitkeep b/www/master/shared/assets/.gitkeep new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/www/master/shared/assets/sampleData1.json b/www/master/shared/assets/sampleData1.json deleted file mode 100644 index 692de4e15005a..0000000000000 --- a/www/master/shared/assets/sampleData1.json +++ /dev/null @@ -1,11993 +0,0 @@ -{ - "relations": [ - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "target": "Pod:elasticsearch-logging-controller-fplln", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:elasticsearch-logging-controller-fplln", - "target": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "target": "Process:c59ed482c768/9167", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/2046fa81d27b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:elasticsearch-logging-controller-fplln", - "target": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "target": "Process:3cbca1d60090/8980", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "target": "Pod:frontend-controller-szwk1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-szwk1", - "target": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9180", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9234", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9334", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9342", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9343", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9344", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9345", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/9346", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Process:bbe285c5f2e6/31634", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/5630952871a3", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-szwk1", - "target": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "target": "Process:73d5a7fedfbc/8946", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "target": "Pod:kibana-logging-controller-0133o", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:kibana-logging-controller-0133o", - "target": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9169", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9213", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9214", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9215", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Process:c61833fc16d7/9216", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/478301224e74", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:kibana-logging-controller-0133o", - "target": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "target": "Process:9692de5790bd/8983", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "target": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "target": "Pod:redis-master", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-master", - "target": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "target": "Process:7f19195ef679/22432", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/c059fe93c46a", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-master", - "target": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "target": "Process:11626b569335/22336", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "target": "Pod:redis-slave-controller-vi7hv", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-vi7hv", - "target": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Process:a9028e8bd1ab/22454", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Process:a9028e8bd1ab/22471", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Process:a9028e8bd1ab/22477", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/81b1b696a77a", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-vi7hv", - "target": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "target": "Process:f82d27e2dfcf/22308", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "target": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "target": "Pod:frontend-controller-b182t", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-b182t", - "target": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/15857", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25256", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25297", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25366", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25368", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25369", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25370", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25371", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Process:e868855420dd/25372", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/5630952871a3", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-b182t", - "target": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "target": "Process:c1b91efcd342/25115", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "target": "Pod:monitoring-influx-grafana-controller-gziey", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-influx-grafana-controller-gziey", - "target": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25304", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25322", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25323", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25324", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25325", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Process:f436d2afe7bf/25326", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3df24075659b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-influx-grafana-controller-gziey", - "target": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "target": "Process:005426f19bca/25258", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "target": "Process:005426f19bca/25272", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/fdd2bd0d0470", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-influx-grafana-controller-gziey", - "target": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "target": "Process:bd6afd430dba/25172", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "target": "Pod:skydns-ls6k1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "target": "Process:1c6f3946b06a/25390", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/93f9564eaa33", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "target": "Process:8f17a7d63d27/25373", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3ea44ca9f1bd", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "target": "Process:14bb8d474c88/25341", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/c5f34efc4446", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:skydns-ls6k1", - "target": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "target": "Process:df65efb615d5/25074", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "target": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "target": "Pod:frontend-controller-vjzjp", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-vjzjp", - "target": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "target": "Process:c00924f5248b/4083", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:frontend-controller-vjzjp", - "target": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4255", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4293", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4330", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4332", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4333", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4334", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4335", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/4336", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Process:9a066b06d5d0/22522", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/5630952871a3", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "target": "Pod:monitoring-heapster-controller-oh43e", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-heapster-controller-oh43e", - "target": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "target": "Process:3a528bad8247/4246", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "target": "Process:3a528bad8247/4276", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6d053b2331f9", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:monitoring-heapster-controller-oh43e", - "target": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "target": "Process:ae0effbebe7e/4082", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "target": "Pod:redis-slave-controller-dnyxx", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-dnyxx", - "target": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Process:0219b8fac88d/4286", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Process:0219b8fac88d/4308", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Process:0219b8fac88d/4309", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/81b1b696a77a", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Pod:redis-slave-controller-dnyxx", - "target": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "target": "Process:4cec5365e5cc/4179", - "type": "contains" - }, - { - "annotations": { - "label": "createdFrom" - }, - "source": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "target": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "type": "createdFrom" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:elasticsearch-logging", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:elasticsearch-logging", - "target": "Pod:elasticsearch-logging-controller-fplln", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:kibana-logging", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:kibana-logging", - "target": "Pod:kibana-logging-controller-0133o", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:kubernetes", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:kubernetes-ro", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:monitoring-grafana", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:monitoring-heapster", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:monitoring-influxdb", - "type": "contains" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:redis-master", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:redis-master", - "target": "Pod:redis-master", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:redisslave", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:redisslave", - "target": "Pod:redis-slave-controller-dnyxx", - "type": "loadBalances" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:redisslave", - "target": "Pod:redis-slave-controller-vi7hv", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "Service:skydns", - "type": "contains" - }, - { - "annotations": { - "label": "loadBalances" - }, - "source": "Service:skydns", - "target": "Pod:skydns-ls6k1", - "type": "loadBalances" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:elasticsearch-logging-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:elasticsearch-logging-controller", - "target": "Pod:elasticsearch-logging-controller-fplln", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:frontend-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:frontend-controller", - "target": "Pod:frontend-controller-b182t", - "type": "monitors" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:frontend-controller", - "target": "Pod:frontend-controller-szwk1", - "type": "monitors" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:frontend-controller", - "target": "Pod:frontend-controller-vjzjp", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:kibana-logging-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:kibana-logging-controller", - "target": "Pod:kibana-logging-controller-0133o", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:monitoring-heapster-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:monitoring-heapster-controller", - "target": "Pod:monitoring-heapster-controller-oh43e", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:monitoring-influx-grafana-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:monitoring-influx-grafana-controller", - "target": "Pod:monitoring-influx-grafana-controller-gziey", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:redis-slave-controller", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:redis-slave-controller", - "target": "Pod:redis-slave-controller-dnyxx", - "type": "monitors" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:redis-slave-controller", - "target": "Pod:redis-slave-controller-vi7hv", - "type": "monitors" - }, - { - "annotations": { - "label": "contains" - }, - "source": "Cluster:shared-kraken", - "target": "ReplicationController:skydns", - "type": "contains" - }, - { - "annotations": { - "label": "monitors" - }, - "source": "ReplicationController:skydns", - "target": "Pod:skydns-ls6k1", - "type": "monitors" - } - ], - "resources": [ - { - "annotations": { - "label": "shared-kraken" - }, - "id": "Cluster:shared-kraken", - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Cluster" - }, - { - "annotations": { - "label": "kubernetes-minion-63vc" - }, - "id": "Node:kubernetes-minion-63vc.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "130.211.175.232", - "id": "kubernetes-minion-63vc.c.shared-kraken.internal", - "resourceVersion": 1231193, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-63vc.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-02-25T17:19:02Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e432bc08-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "elasticsearch-logging-controller-fplln" - }, - "id": "Pod:elasticsearch-logging-controller-fplln", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-63vc.c.shared-kraken.internal", - "hostIP": "130.211.175.232", - "info": { - "POD": { - "containerID": "docker://3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.0.3", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:11Z" - } - } - }, - "elasticsearch-logging": { - "containerID": "docker://c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f", - "image": "dockerfile/elasticsearch", - "imageID": "docker://2046fa81d27b371de4ae5b6106f0a18b27f4fae94c38f68954c4685e7ae94459", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:12Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.0.3", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "dockerfile/elasticsearch", - "imagePullPolicy": "PullIfNotPresent", - "name": "elasticsearch-logging", - "ports": [ - { - "containerPort": 9200, - "name": "es-port", - "protocol": "TCP" - }, - { - "containerPort": 9300, - "name": "es-transport-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log", - "volumeMounts": [ - { - "mountPath": "/data", - "name": "es-persistent-storage", - "path": "/data" - } - ] - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": [ - { - "name": "es-persistent-storage", - "source": { - "emptyDir": {}, - "gitRepo": null, - "hostDir": null, - "persistentDisk": null, - "secret": null - } - } - ] - } - }, - "generateName": "elasticsearch-logging-controller-", - "id": "elasticsearch-logging-controller-fplln", - "labels": { - "name": "elasticsearch-logging" - }, - "namespace": "default", - "resourceVersion": 30, - "selfLink": "/api/v1beta1/pods/elasticsearch-logging-controller-fplln?namespace=default", - "uid": "eaec34d7-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.824353", - "type": "Pod" - }, - { - "annotations": { - "label": "c59ed482c768" - }, - "id": "Container:k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/elasticsearch/bin/elasticsearch" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "ES_PKG_NAME=elasticsearch-1.4.3", - "HOME=/root", - "JAVA_HOME=/usr/lib/jvm/java-8-oracle", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "9200/tcp": {}, - "9300/tcp": {} - }, - "Hostname": "elasticsearch-logging-controller-fplln", - "Image": "dockerfile/elasticsearch", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:19:11.789746097Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/volumes/kubernetes.io~empty-dir/es-persistent-storage:/data", - "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/containers/elasticsearch-logging/c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/hosts", - "Id": "c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f", - "Image": "2046fa81d27b371de4ae5b6106f0a18b27f4fae94c38f68954c4685e7ae94459", - "MountLabel": "", - "Name": "/k8s_elasticsearch-logging.2a73470d_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_4f7ab6f1", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/elasticsearch/bin/elasticsearch", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 9167, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:12.151547994Z" - }, - "Volumes": { - "/data": "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/volumes/kubernetes.io~empty-dir/es-persistent-storage", - "/dev/termination-log": "/var/lib/kubelet/pods/eaec34d7-b7cb-11e4-9018-42010af0f3f2/containers/elasticsearch-logging/c59ed482c768928f8b44203096ba3e628994ba82a135dd4f89970d8fba54c38f" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:32.848895", - "type": "Container" - }, - { - "annotations": { - "label": "9167" - }, - "id": "Process:c59ed482c768/9167", - "properties": { - "%CPU": "11.5", - "%MEM": "10.9", - "COMMAND": "/usr/lib/jvm/java-8-oracle/bin/java -Xms256m -Xmx1g -Xss256k -Djava.awt.headless=true -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=75 -XX:+UseCMSInitiatingOccupancyOnly -XX:+HeapDumpOnOutOfMemoryError -XX:+DisableExplicitGC -Dfile.encoding=UTF-8 -Delasticsearch -Des.foreground=yes -Des.path.home=/elasticsearch -cp :/elasticsearch/lib/elasticsearch-1.4.3.jar:/elasticsearch/lib/*:/elasticsearch/lib/sigar/* org.elasticsearch.bootstrap.Elasticsearch", - "PID": "9167", - "RSS": "414960", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "3196:26", - "TTY": "?", - "USER": "root", - "VSZ": "3704120" - }, - "timestamp": "2015-03-17T00:04:08.838467", - "type": "Process" - }, - { - "annotations": { - "label": "2046fa81d27b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/2046fa81d27b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/elasticsearch/bin/elasticsearch" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root", - "JAVA_HOME=/usr/lib/jvm/java-8-oracle", - "ES_PKG_NAME=elasticsearch-1.4.3" - ], - "ExposedPorts": { - "9200/tcp": {}, - "9300/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "4b7ce22f2d965bd8d7639c70194bf3829a4aee1055ae2285e6e75d4deec6840e", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "b80011fc668117d858aaad1a5b5e8152ca828bdc7f4fb28f6b82ec767dffce9d", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) EXPOSE 9300/tcp" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root", - "JAVA_HOME=/usr/lib/jvm/java-8-oracle", - "ES_PKG_NAME=elasticsearch-1.4.3" - ], - "ExposedPorts": { - "9200/tcp": {}, - "9300/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "4b7ce22f2d965bd8d7639c70194bf3829a4aee1055ae2285e6e75d4deec6840e", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-17T09:21:08.987830049Z", - "DockerVersion": "1.5.0", - "Id": "2046fa81d27b371de4ae5b6106f0a18b27f4fae94c38f68954c4685e7ae94459", - "Os": "linux", - "Parent": "4b7ce22f2d965bd8d7639c70194bf3829a4aee1055ae2285e6e75d4deec6840e", - "Size": 0, - "VirtualSize": 784979176 - }, - "timestamp": "2015-03-17T00:01:32.960236", - "type": "Image" - }, - { - "annotations": { - "label": "3cbca1d60090" - }, - "id": "Container:k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "elasticsearch-logging-controller-fplln", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:09.993691333Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/hostname", - "HostsPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/hosts", - "Id": "3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.fadf157b_elasticsearch-logging-controller-fplln.default.api_eaec34d7-b7cb-11e4-9018-42010af0f3f2_560fbb19", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.0.1", - "IPAddress": "10.244.0.3", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:00:03", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/3cbca1d600908d26041b5e2d410cc98dc11209a002719ee19cb14c35129de529/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 8980, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:11.337452124Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:32.873132", - "type": "Container" - }, - { - "annotations": { - "label": "8980" - }, - "id": "Process:3cbca1d60090/8980", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "8980", - "RSS": "428", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:32.974952", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:32.979442", - "type": "Image" - }, - { - "annotations": { - "label": "frontend-controller-szwk1" - }, - "id": "Pod:frontend-controller-szwk1", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-63vc.c.shared-kraken.internal", - "hostIP": "130.211.175.232", - "info": { - "POD": { - "containerID": "docker://73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.0.2", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:11Z" - } - } - }, - "php-redis": { - "containerID": "docker://bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44", - "image": "kubernetes/example-guestbook-php-redis", - "imageID": "docker://5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:12Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.0.2", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "frontend-controller-", - "id": "frontend-controller-szwk1", - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - }, - "namespace": "default", - "resourceVersion": 2220, - "selfLink": "/api/v1beta1/pods/frontend-controller-szwk1?namespace=default", - "uid": "14a335e3-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.824353", - "type": "Pod" - }, - { - "annotations": { - "label": "bbe285c5f2e6" - }, - "id": "Container:k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-szwk1", - "Image": "kubernetes/example-guestbook-php-redis", - "MacAddress": "", - "Memory": 50000000, - "MemorySwap": -1, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:11.81978513Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/14a335e3-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/hosts", - "Id": "bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44", - "Image": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "MountLabel": "", - "Name": "/k8s_php-redis.f1bf04fb_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_bf021c78", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 9180, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:12.570235819Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/14a335e3-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/bbe285c5f2e698c19d86bf07fa180fb23a20dc1e0fcec41486a6773eb541fc44" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:32.991762", - "type": "Container" - }, - { - "annotations": { - "label": "9180" - }, - "id": "Process:bbe285c5f2e6/9180", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "9180", - "RSS": "80", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4412" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9234" - }, - "id": "Process:bbe285c5f2e6/9234", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "/usr/bin/python /usr/bin/supervisord -n", - "PID": "9234", - "RSS": "10904", - "START": "Feb25", - "STAT": "S", - "TIME": "4:18", - "TTY": "?", - "USER": "root", - "VSZ": "53152" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9334" - }, - "id": "Process:bbe285c5f2e6/9334", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9334", - "RSS": "11908", - "START": "Feb25", - "STAT": "S", - "TIME": "0:55", - "TTY": "?", - "USER": "root", - "VSZ": "259972" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9342" - }, - "id": "Process:bbe285c5f2e6/9342", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9342", - "RSS": "6620", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260036" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9343" - }, - "id": "Process:bbe285c5f2e6/9343", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9343", - "RSS": "8532", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260112" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9344" - }, - "id": "Process:bbe285c5f2e6/9344", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9344", - "RSS": "6624", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9345" - }, - "id": "Process:bbe285c5f2e6/9345", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9345", - "RSS": "6748", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "9346" - }, - "id": "Process:bbe285c5f2e6/9346", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "9346", - "RSS": "6856", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "31634" - }, - "id": "Process:bbe285c5f2e6/31634", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "31634", - "RSS": "6856", - "START": "Mar01", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260020" - }, - "timestamp": "2015-03-17T00:01:33.099217", - "type": "Process" - }, - { - "annotations": { - "label": "5630952871a3" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/5630952871a3", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "63db4df258d14794d7072e009c12443c790c09fb9c25119ec1d06a6197ab85aa", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-09T19:16:28.984874361Z", - "DockerVersion": "1.3.0", - "Id": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "Os": "linux", - "Parent": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "Size": 0, - "VirtualSize": 382800212 - }, - "timestamp": "2015-03-17T00:01:33.135158", - "type": "Image" - }, - { - "annotations": { - "label": "73d5a7fedfbc" - }, - "id": "Container:k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-szwk1", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:09.951312223Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/hostname", - "HostsPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/hosts", - "Id": "73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8550e9ae_frontend-controller-szwk1.default.api_14a335e3-b7d8-11e4-9018-42010af0f3f2_291e36d2", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.0.1", - "IPAddress": "10.244.0.2", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:00:02", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8000" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/73d5a7fedfbc50e87b1d349dc203d5ae84369216ef24b3658c87b113ad02aae9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 8946, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:11.08815428Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.057129", - "type": "Container" - }, - { - "annotations": { - "label": "8946" - }, - "id": "Process:73d5a7fedfbc/8946", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "8946", - "RSS": "468", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.177745", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:32.979442", - "type": "Image" - }, - { - "annotations": { - "label": "kibana-logging-controller-0133o" - }, - "id": "Pod:kibana-logging-controller-0133o", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-63vc.c.shared-kraken.internal", - "hostIP": "130.211.175.232", - "info": { - "POD": { - "containerID": "docker://9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.0.4", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:11Z" - } - } - }, - "kibana-logging": { - "containerID": "docker://c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2", - "image": "kubernetes/kibana:1.0", - "imageID": "docker://478301224e74a6476c2c58513b024182fa92e6d8f65559ae0c11f340d0602529", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:19:12Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.0.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/kibana:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kibana-logging", - "ports": [ - { - "containerPort": 80, - "name": "kibana-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "kibana-logging-controller-", - "id": "kibana-logging-controller-0133o", - "labels": { - "name": "kibana-logging" - }, - "namespace": "default", - "resourceVersion": 33, - "selfLink": "/api/v1beta1/pods/kibana-logging-controller-0133o?namespace=default", - "uid": "eaecd332-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.824353", - "type": "Pod" - }, - { - "annotations": { - "label": "c61833fc16d7" - }, - "id": "Container:k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/usr/local/bin/run_kibana_nginx.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "DEBIAN_FRONTEND=noninteractive", - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "kibana-logging-controller-0133o", - "Image": "kubernetes/kibana:1.0", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:11.810783288Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecd332-b7cb-11e4-9018-42010af0f3f2/containers/kibana-logging/c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/hosts", - "Id": "c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2", - "Image": "478301224e74a6476c2c58513b024182fa92e6d8f65559ae0c11f340d0602529", - "MountLabel": "", - "Name": "/k8s_kibana-logging.724cfcc6_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_2a67cb15", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/usr/local/bin/run_kibana_nginx.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 9169, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:12.123301077Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecd332-b7cb-11e4-9018-42010af0f3f2/containers/kibana-logging/c61833fc16d77f9d0de783328b62d0840e2b91611bf378f8f864d1d67b54ced2" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.195655", - "type": "Container" - }, - { - "annotations": { - "label": "9169" - }, - "id": "Process:c61833fc16d7/9169", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: master process nginx -c /etc/nginx/nginx.conf", - "PID": "9169", - "RSS": "1612", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "90232" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9213" - }, - "id": "Process:c61833fc16d7/9213", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9213", - "RSS": "1548", - "START": "Feb25", - "STAT": "S", - "TIME": "1:16", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9214" - }, - "id": "Process:c61833fc16d7/9214", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9214", - "RSS": "1556", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9215" - }, - "id": "Process:c61833fc16d7/9215", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9215", - "RSS": "1548", - "START": "Feb25", - "STAT": "S", - "TIME": "1:20", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "9216" - }, - "id": "Process:c61833fc16d7/9216", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "9216", - "RSS": "1576", - "START": "Feb25", - "STAT": "S", - "TIME": "1:15", - "TTY": "?", - "USER": "www-data", - "VSZ": "90516" - }, - "timestamp": "2015-03-17T00:01:33.254822", - "type": "Process" - }, - { - "annotations": { - "label": "478301224e74" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/478301224e74", - "properties": { - "Architecture": "amd64", - "Author": "Satnam Singh \"satnam@google.com\"", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/usr/local/bin/run_kibana_nginx.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "DEBIAN_FRONTEND=noninteractive" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "8c41fcbc2d07", - "Image": "27ca45b13403ed55c47666c566020f11e7b8fa8fda3cd916427400700328957a", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "b1dfe71f6acc50f87db4038b788c34f327ca923c62d18e0d799d9f2562cf7660", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/usr/local/bin/run_kibana_nginx.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "DEBIAN_FRONTEND=noninteractive" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "8c41fcbc2d07", - "Image": "27ca45b13403ed55c47666c566020f11e7b8fa8fda3cd916427400700328957a", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-01-15T05:29:21.408402905Z", - "DockerVersion": "1.3.1", - "Id": "478301224e74a6476c2c58513b024182fa92e6d8f65559ae0c11f340d0602529", - "Os": "linux", - "Parent": "27ca45b13403ed55c47666c566020f11e7b8fa8fda3cd916427400700328957a", - "Size": 0, - "VirtualSize": 240188943 - }, - "timestamp": "2015-03-17T00:01:33.261199", - "type": "Image" - }, - { - "annotations": { - "label": "9692de5790bd" - }, - "id": "Container:k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "kibana-logging-controller-0133o", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:19:10.014567451Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/hostname", - "HostsPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/hosts", - "Id": "9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8f57ed6e_kibana-logging-controller-0133o.default.api_eaecd332-b7cb-11e4-9018-42010af0f3f2_7d7407e5", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.0.1", - "IPAddress": "10.244.0.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:00:04", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/9692de5790bd29e77045bd28898f71aaeb17c4a43cc0643b44fa13e9b518f80a/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 8983, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:19:11.337460471Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.221048", - "type": "Container" - }, - { - "annotations": { - "label": "8983" - }, - "id": "Process:9692de5790bd/8983", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "8983", - "RSS": "472", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.275542", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-63vc.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:32.979442", - "type": "Image" - }, - { - "annotations": { - "label": "kubernetes-minion-a411" - }, - "id": "Node:kubernetes-minion-a411.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "23.251.159.135", - "id": "kubernetes-minion-a411.c.shared-kraken.internal", - "resourceVersion": 1231194, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-a411.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-03-01T11:57:20Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e433f082-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "redis-master" - }, - "id": "Pod:redis-master", - "properties": { - "creationTimestamp": "2015-02-19T01:36:00Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-a411.c.shared-kraken.internal", - "hostIP": "23.251.159.135", - "info": { - "POD": { - "containerID": "docker://11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.1.5", - "ready": false, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:15Z" - } - } - }, - "master": { - "containerID": "docker://7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52", - "image": "dockerfile/redis", - "imageID": "docker://c059fe93c46a2fb873656b65eeed5153208bbbaecc420f53fe2131262cce0549", - "ready": true, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:16Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.1.5", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "dockerfile/redis", - "imagePullPolicy": "PullIfNotPresent", - "name": "master", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6379, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "id": "redis-master", - "labels": { - "name": "redis-master" - }, - "namespace": "default", - "resourceVersion": 2115, - "selfLink": "/api/v1beta1/pods/redis-master?namespace=default", - "uid": "a8a4a5a1-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.318503", - "type": "Pod" - }, - { - "annotations": { - "label": "7f19195ef679" - }, - "id": "Container:k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "properties": { - "AppArmorProfile": "", - "Args": [ - "/etc/redis/redis.conf" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "redis-server", - "/etc/redis/redis.conf" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-master", - "Image": "dockerfile/redis", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:23:15.585254538Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/a8a4a5a1-b7d7-11e4-9018-42010af0f3f2/containers/master/7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6379" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/hosts", - "Id": "7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52", - "Image": "c059fe93c46a2fb873656b65eeed5153208bbbaecc420f53fe2131262cce0549", - "MountLabel": "", - "Name": "/k8s_master.89d7f81b_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_3aac79cb", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "redis-server", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22432, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:16.007410579Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/c47d0d1aa0dde82719421ab24d6b9fde3bc4f3fb743e71b54a13086610b7a2c3", - "/dev/termination-log": "/var/lib/kubelet/pods/a8a4a5a1-b7d7-11e4-9018-42010af0f3f2/containers/master/7f19195ef67925756e1fde565a09e8c9280644fe452ba5aea58811a267e6fa52" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.335560", - "type": "Container" - }, - { - "annotations": { - "label": "22432" - }, - "id": "Process:7f19195ef679/22432", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "redis-server *:6379", - "PID": "22432", - "RSS": "4584", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "21:11", - "TTY": "?", - "USER": "root", - "VSZ": "35200" - }, - "timestamp": "2015-03-17T00:01:33.419996", - "type": "Process" - }, - { - "annotations": { - "label": "c059fe93c46a" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/c059fe93c46a", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "redis-server", - "/etc/redis/redis.conf" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "24d723856c60dc8457504360c4499ea0231f9f8e8a02182c64c0c284e00e4e28", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "2a14238ce1dc83aa8f164371a7f0525509095f48e81857a3038c52f4dade7af6", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) EXPOSE map[6379/tcp:{}]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f4f502dce15c", - "Image": "24d723856c60dc8457504360c4499ea0231f9f8e8a02182c64c0c284e00e4e28", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-01-28T20:22:11.091883429Z", - "DockerVersion": "1.3.3", - "Id": "c059fe93c46a2fb873656b65eeed5153208bbbaecc420f53fe2131262cce0549", - "Os": "linux", - "Parent": "24d723856c60dc8457504360c4499ea0231f9f8e8a02182c64c0c284e00e4e28", - "Size": 0, - "VirtualSize": 419116580 - }, - "timestamp": "2015-03-17T00:01:33.426872", - "type": "Image" - }, - { - "annotations": { - "label": "11626b569335" - }, - "id": "Container:k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-master", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:23:14.098886205Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6379" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/hostname", - "HostsPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/hosts", - "Id": "11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.f7adea30_redis-master.default.api_a8a4a5a1-b7d7-11e4-9018-42010af0f3f2_f3a01881", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.1.1", - "IPAddress": "10.244.1.5", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:01:05", - "PortMapping": null, - "Ports": { - "6379/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "6379" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/11626b56933559ace1bec122f76ef5bde9a40db56c0a7ddfba8a8bc0ef53069f/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22336, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:15.407745574Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.348500", - "type": "Container" - }, - { - "annotations": { - "label": "22336" - }, - "id": "Process:11626b569335/22336", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "22336", - "RSS": "484", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.440997", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.446163", - "type": "Image" - }, - { - "annotations": { - "label": "redis-slave-controller-vi7hv" - }, - "id": "Pod:redis-slave-controller-vi7hv", - "properties": { - "creationTimestamp": "2015-02-19T01:37:34Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-a411.c.shared-kraken.internal", - "hostIP": "23.251.159.135", - "info": { - "POD": { - "containerID": "docker://f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.1.4", - "ready": false, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:15Z" - } - } - }, - "slave": { - "containerID": "docker://a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8", - "image": "brendanburns/redis-slave", - "imageID": "docker://81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "ready": true, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:23:16Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.1.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 200, - "image": "brendanburns/redis-slave", - "imagePullPolicy": "PullIfNotPresent", - "name": "slave", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6380, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.2" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "redis-slave-controller-", - "id": "redis-slave-controller-vi7hv", - "labels": { - "name": "redisslave", - "uses": "redis-master" - }, - "namespace": "default", - "resourceVersion": 2165, - "selfLink": "/api/v1beta1/pods/redis-slave-controller-vi7hv?namespace=default", - "uid": "e104deb3-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.318503", - "type": "Pod" - }, - { - "annotations": { - "label": "a9028e8bd1ab" - }, - "id": "Container:k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 204, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-vi7hv", - "Image": "brendanburns/redis-slave", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:23:15.607621051Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/e104deb3-b7d7-11e4-9018-42010af0f3f2/containers/slave/a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/hosts", - "Id": "a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8", - "Image": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "MountLabel": "", - "Name": "/k8s_slave.e3c7fad7_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_c5bbb728", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22454, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:16.159511796Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/7a0e1bbae9019640fbd0d48784c7a89915919e6cfb6b11d1fb7b9255393d2ba8", - "/dev/termination-log": "/var/lib/kubelet/pods/e104deb3-b7d7-11e4-9018-42010af0f3f2/containers/slave/a9028e8bd1abcecb2f1ec8bec20067e04aef882dcae0a196472dcd39f96c61b8" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.456522", - "type": "Container" - }, - { - "annotations": { - "label": "22454" - }, - "id": "Process:a9028e8bd1ab/22454", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "22454", - "RSS": "776", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4452" - }, - "timestamp": "2015-03-17T00:01:33.507677", - "type": "Process" - }, - { - "annotations": { - "label": "22471" - }, - "id": "Process:a9028e8bd1ab/22471", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "22471", - "RSS": "2852", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "17996" - }, - "timestamp": "2015-03-17T00:01:33.507677", - "type": "Process" - }, - { - "annotations": { - "label": "22477" - }, - "id": "Process:a9028e8bd1ab/22477", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "redis-server *:6379", - "PID": "22477", - "RSS": "3860", - "START": "Feb25", - "STAT": "Sl", - "TIME": "25:35", - "TTY": "?", - "USER": "root", - "VSZ": "35180" - }, - "timestamp": "2015-03-17T00:01:33.507677", - "type": "Process" - }, - { - "annotations": { - "label": "81b1b696a77a" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/81b1b696a77a", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "9c0df3e46915e0be5819bbdab972ff9807a479beee8e9c79d4e392e12894750d", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2014-11-16T03:37:21.890022087Z", - "DockerVersion": "1.3.0", - "Id": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "Os": "linux", - "Parent": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "Size": 0, - "VirtualSize": 434171778 - }, - "timestamp": "2015-03-17T00:01:33.515295", - "type": "Image" - }, - { - "annotations": { - "label": "f82d27e2dfcf" - }, - "id": "Container:k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-vi7hv", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:23:14.08662704Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/hostname", - "HostsPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/hosts", - "Id": "f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.e886ea28_redis-slave-controller-vi7hv.default.api_e104deb3-b7d7-11e4-9018-42010af0f3f2_36f906e2", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.1.1", - "IPAddress": "10.244.1.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:01:04", - "PortMapping": null, - "Ports": { - "6379/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "6380" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/f82d27e2dfcf2c0453f67d26cee831c66611c9877512dc997d0a04eb0440f861/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 22308, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:23:15.402677279Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.477380", - "type": "Container" - }, - { - "annotations": { - "label": "22308" - }, - "id": "Process:f82d27e2dfcf/22308", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "22308", - "RSS": "484", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:03", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.528016", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-a411.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.446163", - "type": "Image" - }, - { - "annotations": { - "label": "kubernetes-minion-e3zy" - }, - "id": "Node:kubernetes-minion-e3zy.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "104.154.65.114", - "id": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "resourceVersion": 1231195, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-e3zy.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-02-25T19:54:47Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e4350128-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "frontend-controller-b182t" - }, - "id": "Pod:frontend-controller-b182t", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "hostIP": "104.154.65.114", - "info": { - "POD": { - "containerID": "docker://c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.2.5", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:38:59Z" - } - } - }, - "php-redis": { - "containerID": "docker://e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7", - "image": "kubernetes/example-guestbook-php-redis", - "imageID": "docker://5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:01Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.2.5", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "frontend-controller-", - "id": "frontend-controller-b182t", - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - }, - "namespace": "default", - "resourceVersion": 2221, - "selfLink": "/api/v1beta1/pods/frontend-controller-b182t?namespace=default", - "uid": "14a3a978-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.559330", - "type": "Pod" - }, - { - "annotations": { - "label": "e868855420dd" - }, - "id": "Container:k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-b182t", - "Image": "kubernetes/example-guestbook-php-redis", - "MacAddress": "", - "Memory": 50000000, - "MemorySwap": -1, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:00.430009522Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/14a3a978-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/hosts", - "Id": "e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7", - "Image": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "MountLabel": "", - "Name": "/k8s_php-redis.f1bf04fb_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_558495b7", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25256, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:01.035418104Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/14a3a978-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/e868855420ddf0111491e53ef9cbc5ff92f7e6a7ae2e8caf4f443b17f4da27a7" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.622107", - "type": "Container" - }, - { - "annotations": { - "label": "15857" - }, - "id": "Process:e868855420dd/15857", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "15857", - "RSS": "5980", - "START": "Feb28", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25256" - }, - "id": "Process:e868855420dd/25256", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "25256", - "RSS": "80", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4412" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25297" - }, - "id": "Process:e868855420dd/25297", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "/usr/bin/python /usr/bin/supervisord -n", - "PID": "25297", - "RSS": "10676", - "START": "Feb25", - "STAT": "S", - "TIME": "4:11", - "TTY": "?", - "USER": "root", - "VSZ": "53152" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25366" - }, - "id": "Process:e868855420dd/25366", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25366", - "RSS": "11332", - "START": "Feb25", - "STAT": "S", - "TIME": "0:54", - "TTY": "?", - "USER": "root", - "VSZ": "259972" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25368" - }, - "id": "Process:e868855420dd/25368", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25368", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25369" - }, - "id": "Process:e868855420dd/25369", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25369", - "RSS": "7392", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260112" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25370" - }, - "id": "Process:e868855420dd/25370", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25370", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25371" - }, - "id": "Process:e868855420dd/25371", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25371", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260020" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "25372" - }, - "id": "Process:e868855420dd/25372", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "25372", - "RSS": "5980", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:33.820413", - "type": "Process" - }, - { - "annotations": { - "label": "5630952871a3" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/5630952871a3", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "63db4df258d14794d7072e009c12443c790c09fb9c25119ec1d06a6197ab85aa", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-09T19:16:28.984874361Z", - "DockerVersion": "1.3.0", - "Id": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "Os": "linux", - "Parent": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "Size": 0, - "VirtualSize": 382800212 - }, - "timestamp": "2015-03-17T00:01:33.840468", - "type": "Image" - }, - { - "annotations": { - "label": "c1b91efcd342" - }, - "id": "Container:k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-b182t", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:38:59.335299221Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/hostname", - "HostsPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/hosts", - "Id": "c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8550e9ae_frontend-controller-b182t.default.api_14a3a978-b7d8-11e4-9018-42010af0f3f2_b9fb60e3", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.2.1", - "IPAddress": "10.244.2.5", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:02:05", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8000" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c1b91efcd342d88001c1abe8b9ef129db91eb0c9841e7344d942fdfcd76d1753/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25115, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:38:59.643646773Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.637005", - "type": "Container" - }, - { - "annotations": { - "label": "25115" - }, - "id": "Process:c1b91efcd342/25115", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "25115", - "RSS": "420", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:05", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:33.863269", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.870098", - "type": "Image" - }, - { - "annotations": { - "label": "monitoring-influx-grafana-controller-gziey" - }, - "id": "Pod:monitoring-influx-grafana-controller-gziey", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "hostIP": "104.154.65.114", - "info": { - "POD": { - "containerID": "docker://bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.2.4", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:38:59Z" - } - } - }, - "grafana": { - "containerID": "docker://f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c", - "image": "kubernetes/heapster_grafana:v0.3", - "imageID": "docker://3df24075659b8bcc57085c2bac5043ffd651b034567a4ccb06a354a2ab0f51b3", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:01Z" - } - } - }, - "influxdb": { - "containerID": "docker://005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6", - "image": "kubernetes/heapster_influxdb:v0.3", - "imageID": "docker://fdd2bd0d0470aa206c02a9f48a90efcf4835f15829dfc0d6cee6c55850c9a834", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:00Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.2.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/heapster_influxdb:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "influxdb", - "ports": [ - { - "containerPort": 8083, - "hostPort": 8083, - "protocol": "TCP" - }, - { - "containerPort": 8086, - "hostPort": 8086, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "env": [ - { - "key": "HTTP_USER", - "name": "HTTP_USER", - "value": "admin" - }, - { - "key": "HTTP_PASS", - "name": "HTTP_PASS", - "value": "**None**" - } - ], - "image": "kubernetes/heapster_grafana:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "grafana", - "ports": [ - { - "containerPort": 80, - "hostPort": 80, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "monitoring-influx-grafana-controller-", - "id": "monitoring-influx-grafana-controller-gziey", - "labels": { - "name": "influxGrafana" - }, - "namespace": "default", - "resourceVersion": 31, - "selfLink": "/api/v1beta1/pods/monitoring-influx-grafana-controller-gziey?namespace=default", - "uid": "eaec8788-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.559330", - "type": "Pod" - }, - { - "annotations": { - "label": "f436d2afe7bf" - }, - "id": "Container:k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "GRAFANA_DB_NAME=grafana", - "GRAFANA_VERSION=1.9.1", - "HOME=/", - "HTTP_PASS=**None**", - "HTTP_USER=admin", - "INFLUXDB_HOST=localhost", - "INFLUXDB_NAME=k8s", - "INFLUXDB_PASS=root", - "INFLUXDB_PORT=8086", - "INFLUXDB_PROTO=http", - "INFLUXDB_USER=root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "monitoring-influx-grafana-controller-gziey", - "Image": "kubernetes/heapster_grafana:v0.3", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:01.114457707Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/grafana/f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "80" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hosts", - "Id": "f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c", - "Image": "3df24075659b8bcc57085c2bac5043ffd651b034567a4ccb06a354a2ab0f51b3", - "MountLabel": "", - "Name": "/k8s_grafana.51c4196c_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_362b0152", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/run.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25304, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:01.358730453Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/grafana/f436d2afe7bf99a3891699d302501d619975f922cf9207235257090745ed7c4c" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.898453", - "type": "Container" - }, - { - "annotations": { - "label": "25304" - }, - "id": "Process:f436d2afe7bf/25304", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "25304", - "RSS": "396", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "17996" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25322" - }, - "id": "Process:f436d2afe7bf/25322", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: master process /usr/sbin/nginx", - "PID": "25322", - "RSS": "1644", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "85880" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25323" - }, - "id": "Process:f436d2afe7bf/25323", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25323", - "RSS": "1584", - "START": "Feb25", - "STAT": "S", - "TIME": "1:04", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25324" - }, - "id": "Process:f436d2afe7bf/25324", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25324", - "RSS": "1364", - "START": "Feb25", - "STAT": "S", - "TIME": "0:58", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25325" - }, - "id": "Process:f436d2afe7bf/25325", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25325", - "RSS": "1364", - "START": "Feb25", - "STAT": "S", - "TIME": "0:06", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "25326" - }, - "id": "Process:f436d2afe7bf/25326", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "nginx: worker process", - "PID": "25326", - "RSS": "1616", - "START": "Feb25", - "STAT": "S", - "TIME": "1:04", - "TTY": "?", - "USER": "www-data", - "VSZ": "86160" - }, - "timestamp": "2015-03-17T00:01:33.966187", - "type": "Process" - }, - { - "annotations": { - "label": "3df24075659b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3df24075659b", - "properties": { - "Architecture": "amd64", - "Author": "Vishnu Kannan ", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "GRAFANA_VERSION=1.9.1", - "HTTP_USER=admin", - "HTTP_PASS=**Random**", - "INFLUXDB_PROTO=http", - "INFLUXDB_HOST=localhost", - "INFLUXDB_PORT=8086", - "INFLUXDB_NAME=k8s", - "INFLUXDB_USER=root", - "INFLUXDB_PASS=root", - "GRAFANA_DB_NAME=grafana" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "dd40882ba0ea", - "Image": "1921bce36b2ac44718f4f0d22fb38f033d2310c74369ac9f0922f09320656e20", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "61eeb65c25115170d65c28b8445e7c9408a96dc65ce1887a76132071e598e231", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "GRAFANA_VERSION=1.9.1", - "HTTP_USER=admin", - "HTTP_PASS=**Random**", - "INFLUXDB_PROTO=http", - "INFLUXDB_HOST=localhost", - "INFLUXDB_PORT=8086", - "INFLUXDB_NAME=k8s", - "INFLUXDB_USER=root", - "INFLUXDB_PASS=root", - "GRAFANA_DB_NAME=grafana" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "dd40882ba0ea", - "Image": "1921bce36b2ac44718f4f0d22fb38f033d2310c74369ac9f0922f09320656e20", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-01-22T23:27:25.643625803Z", - "DockerVersion": "1.4.1", - "Id": "3df24075659b8bcc57085c2bac5043ffd651b034567a4ccb06a354a2ab0f51b3", - "Os": "linux", - "Parent": "1921bce36b2ac44718f4f0d22fb38f033d2310c74369ac9f0922f09320656e20", - "Size": 0, - "VirtualSize": 249655365 - }, - "timestamp": "2015-03-17T00:01:33.977770", - "type": "Image" - }, - { - "annotations": { - "label": "005426f19bca" - }, - "id": "Container:k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "INFLUXDB_VERSION=0.8.8", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "PRE_CREATE_DB=k8s;grafana", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "8083/tcp": {}, - "8084/tcp": {}, - "8086/tcp": {}, - "8090/tcp": {}, - "8099/tcp": {} - }, - "Hostname": "monitoring-influx-grafana-controller-gziey", - "Image": "kubernetes/heapster_influxdb:v0.3", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:00.446336779Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/influxdb/005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "PortBindings": { - "8083/tcp": [ - { - "HostIp": "", - "HostPort": "8083" - } - ], - "8086/tcp": [ - { - "HostIp": "", - "HostPort": "8086" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hosts", - "Id": "005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6", - "Image": "fdd2bd0d0470aa206c02a9f48a90efcf4835f15829dfc0d6cee6c55850c9a834", - "MountLabel": "", - "Name": "/k8s_influxdb.d451f8b_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_be0a9112", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/run.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25258, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:00.793085761Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/e23637974f8e067772cd93fc7f64ac895602052e4f814675dee286223979869a", - "/dev/termination-log": "/var/lib/kubelet/pods/eaec8788-b7cb-11e4-9018-42010af0f3f2/containers/influxdb/005426f19bcaff7e67e0a66063e78b1e307c30a13236619e485f8dbebedd3ea6" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:33.903087", - "type": "Container" - }, - { - "annotations": { - "label": "25258" - }, - "id": "Process:005426f19bca/25258", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "25258", - "RSS": "672", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "18016" - }, - "timestamp": "2015-03-17T00:01:33.997069", - "type": "Process" - }, - { - "annotations": { - "label": "25272" - }, - "id": "Process:005426f19bca/25272", - "properties": { - "%CPU": "0.7", - "%MEM": "2.4", - "COMMAND": "/usr/bin/influxdb -config=/config/config.toml", - "PID": "25272", - "RSS": "92496", - "START": "Feb25", - "STAT": "Sl", - "TIME": "196:28", - "TTY": "?", - "USER": "root", - "VSZ": "2315004" - }, - "timestamp": "2015-03-17T00:01:33.997069", - "type": "Process" - }, - { - "annotations": { - "label": "fdd2bd0d0470" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/fdd2bd0d0470", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "INFLUXDB_VERSION=0.8.8", - "PRE_CREATE_DB=k8s;grafana" - ], - "ExposedPorts": { - "8083/tcp": {}, - "8084/tcp": {}, - "8086/tcp": {}, - "8090/tcp": {}, - "8099/tcp": {} - }, - "Hostname": "93847cf6a341", - "Image": "01ca504ee3d1de53f259146c27bb2c3f9a4531127e46eb156c615f9596769bdb", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "" - }, - "Container": "6852c8aea0dd1195b0478ed433b5711c674191afc85d3c15c3a07c357bd7b329", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "INFLUXDB_VERSION=0.8.8", - "PRE_CREATE_DB=k8s;grafana" - ], - "ExposedPorts": { - "8083/tcp": {}, - "8084/tcp": {}, - "8086/tcp": {}, - "8090/tcp": {}, - "8099/tcp": {} - }, - "Hostname": "93847cf6a341", - "Image": "01ca504ee3d1de53f259146c27bb2c3f9a4531127e46eb156c615f9596769bdb", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "" - }, - "Created": "2015-01-19T18:54:18.48135834Z", - "DockerVersion": "1.4.1", - "Id": "fdd2bd0d0470aa206c02a9f48a90efcf4835f15829dfc0d6cee6c55850c9a834", - "Os": "linux", - "Parent": "01ca504ee3d1de53f259146c27bb2c3f9a4531127e46eb156c615f9596769bdb", - "Size": 0, - "VirtualSize": 274660127 - }, - "timestamp": "2015-03-17T00:01:34.004199", - "type": "Image" - }, - { - "annotations": { - "label": "bd6afd430dba" - }, - "id": "Container:k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {}, - "8083/tcp": {}, - "8086/tcp": {} - }, - "Hostname": "monitoring-influx-grafana-controller-gziey", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:38:59.045627366Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "80" - } - ], - "8083/tcp": [ - { - "HostIp": "", - "HostPort": "8083" - } - ], - "8086/tcp": [ - { - "HostIp": "", - "HostPort": "8086" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hostname", - "HostsPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/hosts", - "Id": "bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.14142f41_monitoring-influx-grafana-controller-gziey.default.api_eaec8788-b7cb-11e4-9018-42010af0f3f2_fde1c5ed", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.2.1", - "IPAddress": "10.244.2.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:02:04", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "80" - } - ], - "8083/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8083" - } - ], - "8086/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8086" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/bd6afd430dbab0c4bc242d19e51c1fb9965ae2091a2fde31409f8ae6bf1501a2/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25172, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:38:59.731947599Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:33.933984", - "type": "Container" - }, - { - "annotations": { - "label": "25172" - }, - "id": "Process:bd6afd430dba/25172", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "25172", - "RSS": "420", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.023829", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.870098", - "type": "Image" - }, - { - "annotations": { - "label": "skydns-ls6k1" - }, - "id": "Pod:skydns-ls6k1", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-e3zy.c.shared-kraken.internal", - "hostIP": "104.154.65.114", - "info": { - "POD": { - "containerID": "docker://df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.2.6", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:38:59Z" - } - } - }, - "etcd": { - "containerID": "docker://14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d", - "image": "quay.io/coreos/etcd:latest", - "imageID": "docker://c5f34efc44466ec7abb9a68af20d2f876ea691095747e7e5a62e890cdedadcdc", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:02Z" - } - } - }, - "kube2sky": { - "containerID": "docker://8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996", - "image": "kubernetes/kube2sky:1.0", - "imageID": "docker://3ea44ca9f1bd295f38fb1922e39d26e59294453ac0c5da9ae3c12cea5834c4ad", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:02Z" - } - } - }, - "skydns": { - "containerID": "docker://1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d", - "image": "kubernetes/skydns:2014-12-23-001", - "imageID": "docker://93f9564eaa3307440f3486b109c2fd39172d59a4b49ee4470d0b6141b4113388", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T20:39:02Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.2.6", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "command": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "image": "quay.io/coreos/etcd:latest", - "imagePullPolicy": "PullAlways", - "name": "etcd", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-domain=kubernetes.local" - ], - "image": "kubernetes/kube2sky:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kube2sky", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "image": "kubernetes/skydns:2014-12-23-001", - "imagePullPolicy": "PullIfNotPresent", - "name": "skydns", - "ports": [ - { - "containerPort": 53, - "name": "dns", - "protocol": "UDP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "Default", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "skydns-", - "id": "skydns-ls6k1", - "labels": { - "k8s-app": "skydns" - }, - "namespace": "default", - "resourceVersion": 34, - "selfLink": "/api/v1beta1/pods/skydns-ls6k1?namespace=default", - "uid": "eaecec5a-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:33.559330", - "type": "Pod" - }, - { - "annotations": { - "label": "1c6f3946b06a" - }, - "id": "Container:k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/skydns" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "skydns-ls6k1", - "Image": "kubernetes/skydns:2014-12-23-001", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:02.472036043Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/skydns/1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d", - "Image": "93f9564eaa3307440f3486b109c2fd39172d59a4b49ee4470d0b6141b4113388", - "MountLabel": "", - "Name": "/k8s_skydns.8c4210b3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_b83c0e62", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/skydns", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25390, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:02.691537021Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/skydns/1c6f3946b06a20df8f6e5bd68206984fa9d8f093dddf3e747e012c87dede621d" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.039341", - "type": "Container" - }, - { - "annotations": { - "label": "25390" - }, - "id": "Process:1c6f3946b06a/25390", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "/skydns -machines=http://localhost:4001 -addr=0.0.0.0:53 -domain=kubernetes.local.", - "PID": "25390", - "RSS": "4088", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "5:57", - "TTY": "?", - "USER": "root", - "VSZ": "13908" - }, - "timestamp": "2015-03-17T00:01:34.230185", - "type": "Process" - }, - { - "annotations": { - "label": "93f9564eaa33" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/93f9564eaa33", - "properties": { - "Architecture": "amd64", - "Author": "Tim Hockin ", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/skydns" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "88f18f678e5d", - "Image": "881bfaf6568d614f274f68a4b088037819f56604f9e3711b6e3e5bc71250ec05", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "9a789310ecdffbe544a118aba3d6d8043abff9a4d3f5e589931625f6492a72f6", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/skydns]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/skydns" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "88f18f678e5d", - "Image": "881bfaf6568d614f274f68a4b088037819f56604f9e3711b6e3e5bc71250ec05", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-23T22:39:32.213674267Z", - "DockerVersion": "1.4.1", - "Id": "93f9564eaa3307440f3486b109c2fd39172d59a4b49ee4470d0b6141b4113388", - "Os": "linux", - "Parent": "881bfaf6568d614f274f68a4b088037819f56604f9e3711b6e3e5bc71250ec05", - "Size": 0, - "VirtualSize": 8971347 - }, - "timestamp": "2015-03-17T00:01:34.258096", - "type": "Image" - }, - { - "annotations": { - "label": "8f17a7d63d27" - }, - "id": "Container:k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-domain=kubernetes.local" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "-domain=kubernetes.local" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/kube2sky" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "skydns-ls6k1", - "Image": "kubernetes/kube2sky:1.0", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:02.153334595Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/kube2sky/8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996", - "Image": "3ea44ca9f1bd295f38fb1922e39d26e59294453ac0c5da9ae3c12cea5834c4ad", - "MountLabel": "", - "Name": "/k8s_kube2sky.53fede80_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_6a42ba56", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/kube2sky", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25373, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:02.392075903Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/kube2sky/8f17a7d63d27f05d2efee9b46ddbad37a59d7228f2da6e1e893f02481dd94996" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.044275", - "type": "Container" - }, - { - "annotations": { - "label": "25373" - }, - "id": "Process:8f17a7d63d27/25373", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "/kube2sky -domain=kubernetes.local", - "PID": "25373", - "RSS": "6032", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "1:06", - "TTY": "?", - "USER": "root", - "VSZ": "13332" - }, - "timestamp": "2015-03-17T00:02:49.511383", - "type": "Process" - }, - { - "annotations": { - "label": "3ea44ca9f1bd" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/3ea44ca9f1bd", - "properties": { - "Architecture": "amd64", - "Author": "Tim Hockin ", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/kube2sky" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "665a61a9491d", - "Image": "a8cca3d55334f03efffc702ed3db2ffce9ec74e79d9401b399a0dab6212cdbd7", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "40e72afa696914d791ffa4ab5b3c0ff1e19f45e8400de0b0186d17a5c4818847", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/kube2sky]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/kube2sky" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "665a61a9491d", - "Image": "a8cca3d55334f03efffc702ed3db2ffce9ec74e79d9401b399a0dab6212cdbd7", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-11-17T04:21:36.013464763Z", - "DockerVersion": "1.3.1", - "Id": "3ea44ca9f1bd295f38fb1922e39d26e59294453ac0c5da9ae3c12cea5834c4ad", - "Os": "linux", - "Parent": "a8cca3d55334f03efffc702ed3db2ffce9ec74e79d9401b399a0dab6212cdbd7", - "Size": 0, - "VirtualSize": 7724289 - }, - "timestamp": "2015-03-17T00:01:34.330662", - "type": "Image" - }, - { - "annotations": { - "label": "14bb8d474c88" - }, - "id": "Container:k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "properties": { - "AppArmorProfile": "", - "Args": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/etcd" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "2379/tcp": {}, - "2380/tcp": {}, - "4001/tcp": {}, - "7001/tcp": {} - }, - "Hostname": "skydns-ls6k1", - "Image": "quay.io/coreos/etcd:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:39:02.035986492Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/etcd/14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d", - "Image": "c5f34efc44466ec7abb9a68af20d2f876ea691095747e7e5a62e890cdedadcdc", - "MountLabel": "", - "Name": "/k8s_etcd.dc42e1f3_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_5f874ba1", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/etcd", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25341, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:39:02.092518697Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecec5a-b7cb-11e4-9018-42010af0f3f2/containers/etcd/14bb8d474c88ffbe9390663dca30402032c63b77513dd14396ca82ed3b11797d" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.048694", - "type": "Container" - }, - { - "annotations": { - "label": "25341" - }, - "id": "Process:14bb8d474c88/25341", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "/etcd /etcd -bind-addr=127.0.0.1 -peer-bind-addr=127.0.0.1", - "PID": "25341", - "RSS": "13200", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "20:20", - "TTY": "?", - "USER": "root", - "VSZ": "25788" - }, - "timestamp": "2015-03-17T00:01:34.351085", - "type": "Process" - }, - { - "annotations": { - "label": "c5f34efc4446" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/c5f34efc4446", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/etcd" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "2379/tcp": {}, - "2380/tcp": {}, - "4001/tcp": {}, - "7001/tcp": {} - }, - "Hostname": "70f56fc06e1f", - "Image": "78d63abf03b980919deaac3454a80496559da893948f427868492fa8a0d717ab", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "84dab35d199788f0f9144cc684917a0a17cf3764bdaae768ff5e59a1f0773c79", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/etcd]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/etcd" - ], - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "2379/tcp": {}, - "2380/tcp": {}, - "4001/tcp": {}, - "7001/tcp": {} - }, - "Hostname": "70f56fc06e1f", - "Image": "78d63abf03b980919deaac3454a80496559da893948f427868492fa8a0d717ab", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-11-19T19:59:17.860180047Z", - "DockerVersion": "1.2.0", - "Id": "c5f34efc44466ec7abb9a68af20d2f876ea691095747e7e5a62e890cdedadcdc", - "Os": "linux", - "Parent": "78d63abf03b980919deaac3454a80496559da893948f427868492fa8a0d717ab", - "Size": 0, - "VirtualSize": 20152592 - }, - "timestamp": "2015-03-17T00:01:34.356938", - "type": "Image" - }, - { - "annotations": { - "label": "df65efb615d5" - }, - "id": "Container:k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "skydns-ls6k1", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T20:38:59.274459381Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": null, - "DnsSearch": null, - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hostname", - "HostsPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/hosts", - "Id": "df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.d3cdea5d_skydns-ls6k1.default.api_eaecec5a-b7cb-11e4-9018-42010af0f3f2_c4a76070", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.2.1", - "IPAddress": "10.244.2.6", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:02:06", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/df65efb615d52acbf1d3103fa07e221489cd581f3c7c8c05bb6bbf951befe1e4/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 25074, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T20:38:59.546355673Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.151958", - "type": "Container" - }, - { - "annotations": { - "label": "25074" - }, - "id": "Process:df65efb615d5/25074", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "25074", - "RSS": "420", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.373261", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-e3zy.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:33.870098", - "type": "Image" - }, - { - "annotations": { - "label": "kubernetes-minion-tf8u" - }, - "id": "Node:kubernetes-minion-tf8u.c.shared-kraken.internal", - "properties": { - "creationTimestamp": "2015-02-19T00:11:46Z", - "hostIP": "146.148.77.250", - "id": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "resourceVersion": 1231196, - "resources": { - "capacity": { - "cpu": "1", - "memory": 4026531840 - } - }, - "selfLink": "/api/v1beta1/nodes/kubernetes-minion-tf8u.c.shared-kraken.internal", - "status": { - "conditions": [ - { - "kind": "Ready", - "lastProbeTime": "2015-03-17T00:01:23Z", - "lastTransitionTime": "2015-02-24T22:37:30Z", - "reason": "Node health check succeeded: kubelet /healthz endpoint returns ok", - "status": "Full" - } - ] - }, - "uid": "e435dbd9-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:32.796352", - "type": "Node" - }, - { - "annotations": { - "label": "frontend-controller-vjzjp" - }, - "id": "Pod:frontend-controller-vjzjp", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "hostIP": "146.148.77.250", - "info": { - "POD": { - "containerID": "docker://c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.3.4", - "ready": false, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:25Z" - } - } - }, - "php-redis": { - "containerID": "docker://9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11", - "image": "kubernetes/example-guestbook-php-redis", - "imageID": "docker://5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:26Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.3.4", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "frontend-controller-", - "id": "frontend-controller-vjzjp", - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - }, - "namespace": "default", - "resourceVersion": 2222, - "selfLink": "/api/v1beta1/pods/frontend-controller-vjzjp?namespace=default", - "uid": "14a3cb0c-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.408110", - "type": "Pod" - }, - { - "annotations": { - "label": "c00924f5248b" - }, - "id": "Container:k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-vjzjp", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.108160677Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/hostname", - "HostsPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/hosts", - "Id": "c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8550e9ae_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_684ff4ae", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.3.1", - "IPAddress": "10.244.3.4", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:03:04", - "PortMapping": null, - "Ports": { - "80/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "8000" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4083, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:25.545202435Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.445394", - "type": "Container" - }, - { - "annotations": { - "label": "4083" - }, - "id": "Process:c00924f5248b/4083", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "4083", - "RSS": "432", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.544166", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:34.549147", - "type": "Image" - }, - { - "annotations": { - "label": "9a066b06d5d0" - }, - "id": "Container:k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 102, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "frontend-controller-vjzjp", - "Image": "kubernetes/example-guestbook-php-redis", - "MacAddress": "", - "Memory": 50000000, - "MemorySwap": -1, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.9813196Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/14a3cb0c-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50", - "PortBindings": { - "80/tcp": [ - { - "HostIp": "", - "HostPort": "8000" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/hosts", - "Id": "9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11", - "Image": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "MountLabel": "", - "Name": "/k8s_php-redis.f1bf04fb_frontend-controller-vjzjp.default.api_14a3cb0c-b7d8-11e4-9018-42010af0f3f2_9d0ec49d", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/c00924f5248b023070de8f68d0400183d3f87a858d64622b0c7bddd764a7dc50/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4255, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:26.715823674Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/14a3cb0c-b7d8-11e4-9018-42010af0f3f2/containers/php-redis/9a066b06d5d08b27ac613f1564acac31ee3409796a114904dfc40ba92359ac11" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.454177", - "type": "Container" - }, - { - "annotations": { - "label": "4255" - }, - "id": "Process:9a066b06d5d0/4255", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "4255", - "RSS": "512", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4412" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4293" - }, - "id": "Process:9a066b06d5d0/4293", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "/usr/bin/python /usr/bin/supervisord -n", - "PID": "4293", - "RSS": "11672", - "START": "Feb25", - "STAT": "S", - "TIME": "4:24", - "TTY": "?", - "USER": "root", - "VSZ": "53152" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4330" - }, - "id": "Process:9a066b06d5d0/4330", - "properties": { - "%CPU": "0.0", - "%MEM": "0.3", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4330", - "RSS": "12732", - "START": "Feb25", - "STAT": "S", - "TIME": "0:55", - "TTY": "?", - "USER": "root", - "VSZ": "259972" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4332" - }, - "id": "Process:9a066b06d5d0/4332", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4332", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260036" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4333" - }, - "id": "Process:9a066b06d5d0/4333", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4333", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260020" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4334" - }, - "id": "Process:9a066b06d5d0/4334", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4334", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4335" - }, - "id": "Process:9a066b06d5d0/4335", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4335", - "RSS": "7456", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260052" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "4336" - }, - "id": "Process:9a066b06d5d0/4336", - "properties": { - "%CPU": "0.0", - "%MEM": "0.2", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "4336", - "RSS": "8652", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260112" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "22522" - }, - "id": "Process:9a066b06d5d0/22522", - "properties": { - "%CPU": "0.0", - "%MEM": "0.1", - "COMMAND": "apache2 -D FOREGROUND", - "PID": "22522", - "RSS": "7456", - "START": "Feb28", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "www-data", - "VSZ": "260012" - }, - "timestamp": "2015-03-17T00:01:34.564517", - "type": "Process" - }, - { - "annotations": { - "label": "5630952871a3" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/5630952871a3", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "63db4df258d14794d7072e009c12443c790c09fb9c25119ec1d06a6197ab85aa", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": { - "80/tcp": {} - }, - "Hostname": "9909d49b9b51", - "Image": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-12-09T19:16:28.984874361Z", - "DockerVersion": "1.3.0", - "Id": "5630952871a38cddffda9ec611f5978ab0933628fcd54cd7d7677ce6b17de33f", - "Os": "linux", - "Parent": "230bb094e7576b66d198094b7e19d3e119b2d2404b097b143123cbc4917e6429", - "Size": 0, - "VirtualSize": 382800212 - }, - "timestamp": "2015-03-17T00:01:34.580210", - "type": "Image" - }, - { - "annotations": { - "label": "monitoring-heapster-controller-oh43e" - }, - "id": "Pod:monitoring-heapster-controller-oh43e", - "properties": { - "creationTimestamp": "2015-02-19T00:11:57Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "hostIP": "146.148.77.250", - "info": { - "POD": { - "containerID": "docker://ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.3.5", - "ready": false, - "restartCount": 4, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:25Z" - } - } - }, - "heapster": { - "containerID": "docker://3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2", - "image": "vish/heapster:canary", - "imageID": "docker://6d053b2331f94bc79d816dbaef5ff46873f56e51deea255ddbde7120cada43cc", - "ready": true, - "restartCount": 5, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:26Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.3.5", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "env": [ - { - "key": "INFLUXDB_HOST", - "name": "INFLUXDB_HOST", - "value": "monitoring-influxdb" - } - ], - "image": "vish/heapster:canary", - "imagePullPolicy": "PullIfNotPresent", - "name": "heapster", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "monitoring-heapster-controller-", - "id": "monitoring-heapster-controller-oh43e", - "labels": { - "name": "heapster", - "uses": "monitoring-influxdb" - }, - "namespace": "default", - "resourceVersion": 32, - "selfLink": "/api/v1beta1/pods/monitoring-heapster-controller-oh43e?namespace=default", - "uid": "eaecb958-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.408110", - "type": "Pod" - }, - { - "annotations": { - "label": "3a528bad8247" - }, - "id": "Container:k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "INFLUXDB_HOST=monitoring-influxdb", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "monitoring-heapster-controller-oh43e", - "Image": "vish/heapster:canary", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:26.012057593Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/eaecb958-b7cb-11e4-9018-42010af0f3f2/containers/heapster/3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/hosts", - "Id": "3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2", - "Image": "6d053b2331f94bc79d816dbaef5ff46873f56e51deea255ddbde7120cada43cc", - "MountLabel": "", - "Name": "/k8s_heapster.2144eb98_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_3d5f21b3", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/run.sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4246, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:26.41931187Z" - }, - "Volumes": { - "/dev/termination-log": "/var/lib/kubelet/pods/eaecb958-b7cb-11e4-9018-42010af0f3f2/containers/heapster/3a528bad82474c454aaa21a2442e2a1652685c7f6a22dee0eec801a22e83dcb2" - }, - "VolumesRW": { - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.596550", - "type": "Container" - }, - { - "annotations": { - "label": "4246" - }, - "id": "Process:3a528bad8247/4246", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "4246", - "RSS": "604", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "18004" - }, - "timestamp": "2015-03-17T00:01:34.653889", - "type": "Process" - }, - { - "annotations": { - "label": "4276" - }, - "id": "Process:3a528bad8247/4276", - "properties": { - "%CPU": "0.2", - "%MEM": "0.3", - "COMMAND": "/usr/bin/heapster --kubernetes_master 10.0.0.1:80 --sink influxdb --sink_influxdb_host 10.0.50.127:80", - "PID": "4276", - "RSS": "12600", - "START": "Feb25", - "STAT": "Sl", - "TIME": "59:02", - "TTY": "?", - "USER": "root", - "VSZ": "637408" - }, - "timestamp": "2015-03-17T00:01:34.653889", - "type": "Process" - }, - { - "annotations": { - "label": "6d053b2331f9" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6d053b2331f9", - "properties": { - "Architecture": "amd64", - "Author": "vishnuk@google.com", - "Checksum": "tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "f22711318734", - "Image": "7fc80d85e45f67f5822b469aeb2b90c8bf14be9c4fe86ad0e376269d0adfe8ee", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "211f0b53df0f8036138b0ce1d8f101ad32a25c185e82d1c6c9bdfb2fc28b3565", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "f22711318734", - "Image": "7fc80d85e45f67f5822b469aeb2b90c8bf14be9c4fe86ad0e376269d0adfe8ee", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-18T23:42:04.849887009Z", - "DockerVersion": "1.4.1", - "Id": "6d053b2331f94bc79d816dbaef5ff46873f56e51deea255ddbde7120cada43cc", - "Os": "linux", - "Parent": "7fc80d85e45f67f5822b469aeb2b90c8bf14be9c4fe86ad0e376269d0adfe8ee", - "Size": 0, - "VirtualSize": 211046824 - }, - "timestamp": "2015-03-17T00:01:34.660083", - "type": "Image" - }, - { - "annotations": { - "label": "ae0effbebe7e" - }, - "id": "Container:k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": null, - "Hostname": "monitoring-heapster-controller-oh43e", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.229652938Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": null, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/hostname", - "HostsPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/hosts", - "Id": "ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.8149c85a_monitoring-heapster-controller-oh43e.default.api_eaecb958-b7cb-11e4-9018-42010af0f3f2_ff9d7b54", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.3.1", - "IPAddress": "10.244.3.5", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:03:05", - "PortMapping": null, - "Ports": {} - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/ae0effbebe7e4e3fc73a31d22224eadbad54a56c22e75f0abaf9c121bb18a4b3/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4082, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:25.58370912Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.613034", - "type": "Container" - }, - { - "annotations": { - "label": "4082" - }, - "id": "Process:ae0effbebe7e/4082", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "4082", - "RSS": "432", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.680611", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:34.549147", - "type": "Image" - }, - { - "annotations": { - "label": "redis-slave-controller-dnyxx" - }, - "id": "Pod:redis-slave-controller-dnyxx", - "properties": { - "creationTimestamp": "2015-02-19T01:37:34Z", - "currentState": { - "Condition": [ - { - "kind": "Ready", - "status": "Full" - } - ], - "host": "kubernetes-minion-tf8u.c.shared-kraken.internal", - "hostIP": "146.148.77.250", - "info": { - "POD": { - "containerID": "docker://4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "image": "kubernetes/pause:latest", - "imageID": "docker://6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "podIP": "10.244.3.6", - "ready": false, - "restartCount": 4, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:25Z" - } - } - }, - "slave": { - "containerID": "docker://0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08", - "image": "brendanburns/redis-slave", - "imageID": "docker://81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "ready": true, - "restartCount": 3, - "state": { - "running": { - "startedAt": "2015-02-25T17:21:26Z" - } - } - } - }, - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - }, - "podIP": "10.244.3.6", - "status": "Running" - }, - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 200, - "image": "brendanburns/redis-slave", - "imagePullPolicy": "PullIfNotPresent", - "name": "slave", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6380, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.2" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "generateName": "redis-slave-controller-", - "id": "redis-slave-controller-dnyxx", - "labels": { - "name": "redisslave", - "uses": "redis-master" - }, - "namespace": "default", - "resourceVersion": 2164, - "selfLink": "/api/v1beta1/pods/redis-slave-controller-dnyxx?namespace=default", - "uid": "e104806a-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.408110", - "type": "Pod" - }, - { - "annotations": { - "label": "0219b8fac88d" - }, - "id": "Container:k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "properties": { - "AppArmorProfile": "", - "Args": [ - "-c", - "/run.sh" - ], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 204, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/root", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-dnyxx", - "Image": "brendanburns/redis-slave", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2015-02-25T17:21:26.517282879Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": [ - "/var/lib/kubelet/pods/e104806a-b7d7-11e4-9018-42010af0f3f2/containers/slave/0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08:/dev/termination-log" - ], - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "container:4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "Links": null, - "LxcConf": null, - "NetworkMode": "container:4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "", - "HostsPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/hosts", - "Id": "0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08", - "Image": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "MountLabel": "", - "Name": "/k8s_slave.e3c7fad7_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_fea6e068", - "NetworkSettings": { - "Bridge": "", - "Gateway": "", - "IPAddress": "", - "IPPrefixLen": 0, - "MacAddress": "", - "PortMapping": null, - "Ports": null - }, - "Path": "/bin/sh", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4286, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:26.884370926Z" - }, - "Volumes": { - "/data": "/var/lib/docker/vfs/dir/bdd95a3bf51ef4f8db587f882b46885177cc6a9969fa80a6cbfd9295356db7b0", - "/dev/termination-log": "/var/lib/kubelet/pods/e104806a-b7d7-11e4-9018-42010af0f3f2/containers/slave/0219b8fac88d8f3f5c5d42d0823a915975cd0cdd0a55ea6b8ce5c7b6b0fbda08" - }, - "VolumesRW": { - "/data": true, - "/dev/termination-log": true - } - }, - "timestamp": "2015-03-17T00:01:34.697142", - "type": "Container" - }, - { - "annotations": { - "label": "4286" - }, - "id": "Process:0219b8fac88d/4286", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/sh -c /run.sh", - "PID": "4286", - "RSS": "84", - "START": "Feb25", - "STAT": "Ss", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "4452" - }, - "timestamp": "2015-03-17T00:01:34.756307", - "type": "Process" - }, - { - "annotations": { - "label": "4308" - }, - "id": "Process:0219b8fac88d/4308", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/bin/bash /run.sh", - "PID": "4308", - "RSS": "600", - "START": "Feb25", - "STAT": "S", - "TIME": "0:00", - "TTY": "?", - "USER": "root", - "VSZ": "17996" - }, - "timestamp": "2015-03-17T00:01:34.756307", - "type": "Process" - }, - { - "annotations": { - "label": "4309" - }, - "id": "Process:0219b8fac88d/4309", - "properties": { - "%CPU": "0.1", - "%MEM": "0.0", - "COMMAND": "redis-server *:6379", - "PID": "4309", - "RSS": "2376", - "START": "Feb25", - "STAT": "Sl", - "TIME": "28:38", - "TTY": "?", - "USER": "root", - "VSZ": "35180" - }, - "timestamp": "2015-03-17T00:01:34.756307", - "type": "Process" - }, - { - "annotations": { - "label": "81b1b696a77a" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/81b1b696a77a", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "/run.sh" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Container": "9c0df3e46915e0be5819bbdab972ff9807a479beee8e9c79d4e392e12894750d", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) CMD [/bin/sh -c /run.sh]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": null, - "Env": [ - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "HOME=/root" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "f22711318734", - "Image": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": { - "/data": {} - }, - "WorkingDir": "/data" - }, - "Created": "2014-11-16T03:37:21.890022087Z", - "DockerVersion": "1.3.0", - "Id": "81b1b696a77a9b5ca5e8954b0428208daa67853c118bb8d15cae073028a0ee3c", - "Os": "linux", - "Parent": "cdc9281d0adf6da47bb43c6d91ff1de9a4e5d890228bbe520e343e7b360ab546", - "Size": 0, - "VirtualSize": 434171778 - }, - "timestamp": "2015-03-17T00:01:34.763462", - "type": "Image" - }, - { - "annotations": { - "label": "4cec5365e5cc" - }, - "id": "Container:k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "properties": { - "AppArmorProfile": "", - "Args": [], - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "ELASTICSEARCH_LOGGING_PORT=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP=tcp://10.0.126.205:9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_ADDR=10.0.126.205", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PORT=9200", - "ELASTICSEARCH_LOGGING_PORT_9200_TCP_PROTO=tcp", - "ELASTICSEARCH_LOGGING_SERVICE_HOST=10.0.126.205", - "ELASTICSEARCH_LOGGING_SERVICE_PORT=9200", - "HOME=/", - "KIBANA_LOGGING_PORT=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP=tcp://10.0.51.28:5601", - "KIBANA_LOGGING_PORT_5601_TCP_ADDR=10.0.51.28", - "KIBANA_LOGGING_PORT_5601_TCP_PORT=5601", - "KIBANA_LOGGING_PORT_5601_TCP_PROTO=tcp", - "KIBANA_LOGGING_SERVICE_HOST=10.0.51.28", - "KIBANA_LOGGING_SERVICE_PORT=5601", - "KUBERNETES_PORT=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP=tcp://10.0.0.2:443", - "KUBERNETES_PORT_443_TCP_ADDR=10.0.0.2", - "KUBERNETES_PORT_443_TCP_PORT=443", - "KUBERNETES_PORT_443_TCP_PROTO=tcp", - "KUBERNETES_RO_PORT=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP=tcp://10.0.0.1:80", - "KUBERNETES_RO_PORT_80_TCP_ADDR=10.0.0.1", - "KUBERNETES_RO_PORT_80_TCP_PORT=80", - "KUBERNETES_RO_PORT_80_TCP_PROTO=tcp", - "KUBERNETES_RO_SERVICE_HOST=10.0.0.1", - "KUBERNETES_RO_SERVICE_PORT=80", - "KUBERNETES_SERVICE_HOST=10.0.0.2", - "KUBERNETES_SERVICE_PORT=443", - "MONITORING_GRAFANA_PORT=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP=tcp://10.0.48.147:80", - "MONITORING_GRAFANA_PORT_80_TCP_ADDR=10.0.48.147", - "MONITORING_GRAFANA_PORT_80_TCP_PORT=80", - "MONITORING_GRAFANA_PORT_80_TCP_PROTO=tcp", - "MONITORING_GRAFANA_SERVICE_HOST=10.0.48.147", - "MONITORING_GRAFANA_SERVICE_PORT=80", - "MONITORING_HEAPSTER_PORT=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP=tcp://10.0.85.65:80", - "MONITORING_HEAPSTER_PORT_80_TCP_ADDR=10.0.85.65", - "MONITORING_HEAPSTER_PORT_80_TCP_PORT=80", - "MONITORING_HEAPSTER_PORT_80_TCP_PROTO=tcp", - "MONITORING_HEAPSTER_SERVICE_HOST=10.0.85.65", - "MONITORING_HEAPSTER_SERVICE_PORT=80", - "MONITORING_INFLUXDB_PORT=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP=tcp://10.0.50.127:80", - "MONITORING_INFLUXDB_PORT_80_TCP_ADDR=10.0.50.127", - "MONITORING_INFLUXDB_PORT_80_TCP_PORT=80", - "MONITORING_INFLUXDB_PORT_80_TCP_PROTO=tcp", - "MONITORING_INFLUXDB_SERVICE_HOST=10.0.50.127", - "MONITORING_INFLUXDB_SERVICE_PORT=80", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", - "REDISSLAVE_PORT=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP=tcp://10.0.78.161:6379", - "REDISSLAVE_PORT_6379_TCP_ADDR=10.0.78.161", - "REDISSLAVE_PORT_6379_TCP_PORT=6379", - "REDISSLAVE_PORT_6379_TCP_PROTO=tcp", - "REDISSLAVE_SERVICE_HOST=10.0.78.161", - "REDISSLAVE_SERVICE_PORT=6379", - "REDIS_MASTER_PORT=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP=tcp://10.0.254.112:6379", - "REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.254.112", - "REDIS_MASTER_PORT_6379_TCP_PORT=6379", - "REDIS_MASTER_PORT_6379_TCP_PROTO=tcp", - "REDIS_MASTER_SERVICE_HOST=10.0.254.112", - "REDIS_MASTER_SERVICE_PORT=6379", - "SKYDNS_PORT=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP=udp://10.0.0.10:53", - "SKYDNS_PORT_53_UDP_ADDR=10.0.0.10", - "SKYDNS_PORT_53_UDP_PORT=53", - "SKYDNS_PORT_53_UDP_PROTO=udp", - "SKYDNS_SERVICE_HOST=10.0.0.10", - "SKYDNS_SERVICE_PORT=53" - ], - "ExposedPorts": { - "6379/tcp": {} - }, - "Hostname": "redis-slave-controller-dnyxx", - "Image": "kubernetes/pause:latest", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": null, - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2015-02-25T17:21:25.365963476Z", - "Driver": "aufs", - "ExecDriver": "native-0.2", - "HostConfig": { - "Binds": null, - "CapAdd": null, - "CapDrop": null, - "ContainerIDFile": "", - "Devices": null, - "Dns": [ - "10.0.0.10", - "169.254.169.254", - "10.240.0.1" - ], - "DnsSearch": [ - "default.kubernetes.local", - "kubernetes.local", - "c.shared-kraken.internal.", - "519348962119.google.internal.", - "google.internal." - ], - "ExtraHosts": null, - "IpcMode": "", - "Links": null, - "LxcConf": null, - "NetworkMode": "", - "PortBindings": { - "6379/tcp": [ - { - "HostIp": "", - "HostPort": "6380" - } - ] - }, - "Privileged": false, - "PublishAllPorts": false, - "RestartPolicy": { - "MaximumRetryCount": 0, - "Name": "" - }, - "SecurityOpt": null, - "VolumesFrom": null - }, - "HostnamePath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/hostname", - "HostsPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/hosts", - "Id": "4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9", - "Image": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "MountLabel": "", - "Name": "/k8s_POD.e886ea28_redis-slave-controller-dnyxx.default.api_e104806a-b7d7-11e4-9018-42010af0f3f2_19052fd1", - "NetworkSettings": { - "Bridge": "cbr0", - "Gateway": "10.244.3.1", - "IPAddress": "10.244.3.6", - "IPPrefixLen": 24, - "MacAddress": "02:42:0a:f4:03:06", - "PortMapping": null, - "Ports": { - "6379/tcp": [ - { - "HostIp": "0.0.0.0", - "HostPort": "6380" - } - ] - } - }, - "Path": "/pause", - "ProcessLabel": "", - "ResolvConfPath": "/var/lib/docker/containers/4cec5365e5ccfb78ed20d90cd55ac6fb2b7a807a7bf4d23d0496b7c5304e0fa9/resolv.conf", - "State": { - "Error": "", - "ExitCode": 0, - "FinishedAt": "0001-01-01T00:00:00Z", - "OOMKilled": false, - "Paused": false, - "Pid": 4179, - "Restarting": false, - "Running": true, - "StartedAt": "2015-02-25T17:21:25.690399743Z" - }, - "Volumes": {}, - "VolumesRW": {} - }, - "timestamp": "2015-03-17T00:01:34.723437", - "type": "Container" - }, - { - "annotations": { - "label": "4179" - }, - "id": "Process:4cec5365e5cc/4179", - "properties": { - "%CPU": "0.0", - "%MEM": "0.0", - "COMMAND": "/pause", - "PID": "4179", - "RSS": "432", - "START": "Feb25", - "STAT": "Ssl", - "TIME": "0:04", - "TTY": "?", - "USER": "root", - "VSZ": "265340" - }, - "timestamp": "2015-03-17T00:01:34.778011", - "type": "Process" - }, - { - "annotations": { - "label": "6c4579af347b" - }, - "id": "Image:kubernetes-minion-tf8u.c.shared-kraken.internal/6c4579af347b", - "properties": { - "Architecture": "amd64", - "Author": "", - "Checksum": "tarsum.dev+sha256:1b755912c77197c6a43539f2a708ef89d5849b8ce02642cb702e47afaa8195c3", - "Comment": "", - "Config": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": null, - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Container": "c2bc28b48b5c5543f3589c02eb9e7fa898a733cd850cb4cc350d9353f6ae9bcd", - "ContainerConfig": { - "AttachStderr": false, - "AttachStdin": false, - "AttachStdout": false, - "Cmd": [ - "/bin/sh", - "-c", - "#(nop) ENTRYPOINT [/pause]" - ], - "CpuShares": 0, - "Cpuset": "", - "Domainname": "", - "Entrypoint": [ - "/pause" - ], - "Env": [ - "HOME=/", - "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - ], - "ExposedPorts": null, - "Hostname": "e931342f8fec", - "Image": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "MacAddress": "", - "Memory": 0, - "MemorySwap": 0, - "NetworkDisabled": false, - "OnBuild": [], - "OpenStdin": false, - "PortSpecs": null, - "StdinOnce": false, - "Tty": false, - "User": "", - "Volumes": null, - "WorkingDir": "" - }, - "Created": "2014-07-19T07:02:32.267701596Z", - "DockerVersion": "1.0.0", - "Id": "6c4579af347b649857e915521132f15a06186d73faa62145e3eeeb6be0e97c27", - "Os": "linux", - "Parent": "e244e638e26e77a8b08da462b1cb92811ed6d3d2874286368afcef7717ed9475", - "Size": 0, - "VirtualSize": 239840 - }, - "timestamp": "2015-03-17T00:01:34.549147", - "type": "Image" - }, - { - "annotations": { - "label": "elasticsearch-logging" - }, - "id": "Service:elasticsearch-logging", - "properties": { - "containerPort": "es-port", - "createExternalLoadBalancer": true, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "elasticsearch-logging", - "labels": { - "name": "elasticsearch-logging" - }, - "namespace": "default", - "port": 9200, - "portalIP": "10.0.126.205", - "protocol": "TCP", - "publicIPs": [ - "146.148.56.136" - ], - "resourceVersion": 68, - "selector": { - "name": "elasticsearch-logging" - }, - "selfLink": "/api/v1beta1/services/elasticsearch-logging?namespace=default", - "sessionAffinity": "None", - "uid": "e8804c83-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "kibana-logging" - }, - "id": "Service:kibana-logging", - "properties": { - "containerPort": "kibana-port", - "createExternalLoadBalancer": true, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "kibana-logging", - "labels": { - "name": "kibana-logging" - }, - "namespace": "default", - "port": 5601, - "portalIP": "10.0.51.28", - "protocol": "TCP", - "publicIPs": [ - "130.211.172.131" - ], - "resourceVersion": 69, - "selector": { - "name": "kibana-logging" - }, - "selfLink": "/api/v1beta1/services/kibana-logging?namespace=default", - "sessionAffinity": "None", - "uid": "e87b2184-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "kubernetes" - }, - "id": "Service:kubernetes", - "properties": { - "containerPort": 0, - "creationTimestamp": "2015-02-19T00:11:42Z", - "id": "kubernetes", - "labels": { - "component": "apiserver", - "provider": "kubernetes" - }, - "namespace": "default", - "port": 443, - "portalIP": "10.0.0.2", - "protocol": "TCP", - "resourceVersion": 4, - "selector": null, - "selfLink": "/api/v1beta1/services/kubernetes?namespace=default", - "sessionAffinity": "None", - "uid": "e221251b-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "kubernetes-ro" - }, - "id": "Service:kubernetes-ro", - "properties": { - "containerPort": 0, - "creationTimestamp": "2015-02-19T00:11:42Z", - "id": "kubernetes-ro", - "labels": { - "component": "apiserver", - "provider": "kubernetes" - }, - "namespace": "default", - "port": 80, - "portalIP": "10.0.0.1", - "protocol": "TCP", - "resourceVersion": 5, - "selector": null, - "selfLink": "/api/v1beta1/services/kubernetes-ro?namespace=default", - "sessionAffinity": "None", - "uid": "e223bbf7-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "monitoring-grafana" - }, - "id": "Service:monitoring-grafana", - "properties": { - "containerPort": 80, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "monitoring-grafana", - "namespace": "default", - "port": 80, - "portalIP": "10.0.48.147", - "protocol": "TCP", - "resourceVersion": 22, - "selector": { - "name": "influxGrafana" - }, - "selfLink": "/api/v1beta1/services/monitoring-grafana?namespace=default", - "sessionAffinity": "None", - "uid": "e885ee4b-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "monitoring-heapster" - }, - "id": "Service:monitoring-heapster", - "properties": { - "containerPort": 8082, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "monitoring-heapster", - "namespace": "default", - "port": 80, - "portalIP": "10.0.85.65", - "protocol": "TCP", - "resourceVersion": 19, - "selector": { - "name": "heapster" - }, - "selfLink": "/api/v1beta1/services/monitoring-heapster?namespace=default", - "sessionAffinity": "None", - "uid": "e883d705-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "monitoring-influxdb" - }, - "id": "Service:monitoring-influxdb", - "properties": { - "containerPort": 8086, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "monitoring-influxdb", - "namespace": "default", - "port": 80, - "portalIP": "10.0.50.127", - "protocol": "TCP", - "resourceVersion": 21, - "selector": { - "name": "influxGrafana" - }, - "selfLink": "/api/v1beta1/services/monitoring-influxdb?namespace=default", - "sessionAffinity": "None", - "uid": "e885ceda-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "redis-master" - }, - "id": "Service:redis-master", - "properties": { - "containerPort": 6379, - "creationTimestamp": "2015-02-19T01:36:53Z", - "id": "redis-master", - "labels": { - "name": "redis-master" - }, - "namespace": "default", - "port": 6379, - "portalIP": "10.0.254.112", - "protocol": "TCP", - "resourceVersion": 2145, - "selector": { - "name": "redis-master" - }, - "selfLink": "/api/v1beta1/services/redis-master?namespace=default", - "sessionAffinity": "None", - "uid": "c81f5fae-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "redisslave" - }, - "id": "Service:redisslave", - "properties": { - "containerPort": 6379, - "creationTimestamp": "2015-02-19T01:38:46Z", - "id": "redisslave", - "labels": { - "name": "redisslave" - }, - "namespace": "default", - "port": 6379, - "portalIP": "10.0.78.161", - "protocol": "TCP", - "resourceVersion": 2209, - "selector": { - "name": "redisslave" - }, - "selfLink": "/api/v1beta1/services/redisslave?namespace=default", - "sessionAffinity": "None", - "uid": "0bac519a-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "skydns" - }, - "id": "Service:skydns", - "properties": { - "containerPort": 53, - "creationTimestamp": "2015-02-19T00:11:53Z", - "id": "skydns", - "labels": { - "k8s-app": "skydns" - }, - "namespace": "default", - "port": 53, - "portalIP": "10.0.0.10", - "protocol": "UDP", - "resourceVersion": 20, - "selector": { - "k8s-app": "skydns" - }, - "selfLink": "/api/v1beta1/services/skydns?namespace=default", - "sessionAffinity": "None", - "uid": "e885b8f7-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:34.786569", - "type": "Service" - }, - { - "annotations": { - "label": "elasticsearch-logging-controller" - }, - "id": "ReplicationController:elasticsearch-logging-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "dockerfile/elasticsearch", - "imagePullPolicy": "PullIfNotPresent", - "name": "elasticsearch-logging", - "ports": [ - { - "containerPort": 9200, - "name": "es-port", - "protocol": "TCP" - }, - { - "containerPort": 9300, - "name": "es-transport-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log", - "volumeMounts": [ - { - "mountPath": "/data", - "name": "es-persistent-storage", - "path": "/data" - } - ] - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": [ - { - "name": "es-persistent-storage", - "source": { - "emptyDir": {}, - "gitRepo": null, - "hostDir": null, - "persistentDisk": null, - "secret": null - } - } - ] - } - }, - "labels": { - "name": "elasticsearch-logging" - } - }, - "replicaSelector": { - "name": "elasticsearch-logging" - }, - "replicas": 1 - }, - "id": "elasticsearch-logging-controller", - "labels": { - "name": "elasticsearch-logging" - }, - "namespace": "default", - "resourceVersion": 23, - "selfLink": "/api/v1beta1/replicationControllers/elasticsearch-logging-controller?namespace=default", - "uid": "e88b3b49-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "frontend-controller" - }, - "id": "ReplicationController:frontend-controller", - "properties": { - "creationTimestamp": "2015-02-19T01:39:01Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 3 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 100, - "image": "kubernetes/example-guestbook-php-redis", - "imagePullPolicy": "PullIfNotPresent", - "memory": 50000000, - "name": "php-redis", - "ports": [ - { - "containerPort": 80, - "hostPort": 8000, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.1", - "memory": 50000000 - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "frontend", - "uses": "redisslave,redis-master" - } - }, - "replicaSelector": { - "name": "frontend" - }, - "replicas": 3 - }, - "id": "frontend-controller", - "labels": { - "name": "frontend" - }, - "namespace": "default", - "resourceVersion": 2219, - "selfLink": "/api/v1beta1/replicationControllers/frontend-controller?namespace=default", - "uid": "149cf3ac-b7d8-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "kibana-logging-controller" - }, - "id": "ReplicationController:kibana-logging-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/kibana:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kibana-logging", - "ports": [ - { - "containerPort": 80, - "name": "kibana-port", - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "kibana-logging" - } - }, - "replicaSelector": { - "name": "kibana-logging" - }, - "replicas": 1 - }, - "id": "kibana-logging-controller", - "labels": { - "name": "kibana-logging" - }, - "namespace": "default", - "resourceVersion": 18, - "selfLink": "/api/v1beta1/replicationControllers/kibana-logging-controller?namespace=default", - "uid": "e883e7aa-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "monitoring-heapster-controller" - }, - "id": "ReplicationController:monitoring-heapster-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "env": [ - { - "key": "INFLUXDB_HOST", - "name": "INFLUXDB_HOST", - "value": "monitoring-influxdb" - } - ], - "image": "vish/heapster:canary", - "imagePullPolicy": "PullIfNotPresent", - "name": "heapster", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "heapster", - "uses": "monitoring-influxdb" - } - }, - "replicaSelector": { - "name": "heapster" - }, - "replicas": 1 - }, - "id": "monitoring-heapster-controller", - "labels": { - "name": "heapster" - }, - "namespace": "default", - "resourceVersion": 17, - "selfLink": "/api/v1beta1/replicationControllers/monitoring-heapster-controller?namespace=default", - "uid": "e8830cb0-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "monitoring-influx-grafana-controller" - }, - "id": "ReplicationController:monitoring-influx-grafana-controller", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "image": "kubernetes/heapster_influxdb:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "influxdb", - "ports": [ - { - "containerPort": 8083, - "hostPort": 8083, - "protocol": "TCP" - }, - { - "containerPort": 8086, - "hostPort": 8086, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "env": [ - { - "key": "HTTP_USER", - "name": "HTTP_USER", - "value": "admin" - }, - { - "key": "HTTP_PASS", - "name": "HTTP_PASS", - "value": "**None**" - } - ], - "image": "kubernetes/heapster_grafana:v0.3", - "imagePullPolicy": "PullIfNotPresent", - "name": "grafana", - "ports": [ - { - "containerPort": 80, - "hostPort": 80, - "protocol": "TCP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "influxGrafana" - } - }, - "replicaSelector": { - "name": "influxGrafana" - }, - "replicas": 1 - }, - "id": "monitoring-influx-grafana-controller", - "labels": { - "name": "influxGrafana" - }, - "namespace": "default", - "resourceVersion": 24, - "selfLink": "/api/v1beta1/replicationControllers/monitoring-influx-grafana-controller?namespace=default", - "uid": "e88bcebd-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "redis-slave-controller" - }, - "id": "ReplicationController:redis-slave-controller", - "properties": { - "creationTimestamp": "2015-02-19T01:37:34Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 2 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "cpu": 200, - "image": "brendanburns/redis-slave", - "imagePullPolicy": "PullIfNotPresent", - "name": "slave", - "ports": [ - { - "containerPort": 6379, - "hostPort": 6380, - "protocol": "TCP" - } - ], - "resources": { - "limits": { - "cpu": "0.2" - } - }, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "ClusterFirst", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "name": "redisslave", - "uses": "redis-master" - } - }, - "replicaSelector": { - "name": "redisslave" - }, - "replicas": 2 - }, - "id": "redis-slave-controller", - "labels": { - "name": "redisslave" - }, - "namespace": "default", - "resourceVersion": 2163, - "selfLink": "/api/v1beta1/replicationControllers/redis-slave-controller?namespace=default", - "uid": "e0fe9d98-b7d7-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - }, - { - "annotations": { - "label": "skydns" - }, - "id": "ReplicationController:skydns", - "properties": { - "creationTimestamp": "2015-02-19T00:11:53Z", - "currentState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": null, - "id": "", - "restartPolicy": {}, - "version": "", - "volumes": null - } - } - }, - "replicas": 1 - }, - "desiredState": { - "podTemplate": { - "desiredState": { - "manifest": { - "containers": [ - { - "capabilities": {}, - "command": [ - "/etcd", - "-bind-addr=127.0.0.1", - "-peer-bind-addr=127.0.0.1" - ], - "image": "quay.io/coreos/etcd:latest", - "imagePullPolicy": "PullAlways", - "name": "etcd", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-domain=kubernetes.local" - ], - "image": "kubernetes/kube2sky:1.0", - "imagePullPolicy": "PullIfNotPresent", - "name": "kube2sky", - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - }, - { - "capabilities": {}, - "command": [ - "-machines=http://localhost:4001", - "-addr=0.0.0.0:53", - "-domain=kubernetes.local." - ], - "image": "kubernetes/skydns:2014-12-23-001", - "imagePullPolicy": "PullIfNotPresent", - "name": "skydns", - "ports": [ - { - "containerPort": 53, - "name": "dns", - "protocol": "UDP" - } - ], - "resources": {}, - "terminationMessagePath": "/dev/termination-log" - } - ], - "dnsPolicy": "Default", - "id": "", - "restartPolicy": { - "always": {} - }, - "version": "v1beta2", - "volumes": null - } - }, - "labels": { - "k8s-app": "skydns" - } - }, - "replicaSelector": { - "k8s-app": "skydns" - }, - "replicas": 1 - }, - "id": "skydns", - "labels": { - "k8s-app": "skydns" - }, - "namespace": "default", - "resourceVersion": 25, - "selfLink": "/api/v1beta1/replicationControllers/skydns?namespace=default", - "uid": "e88d6fb4-b7cb-11e4-9018-42010af0f3f2" - }, - "timestamp": "2015-03-17T00:01:35.083763", - "type": "ReplicationController" - } - ], - "success": true, - "timestamp": "2015-03-17T00:04:18.106157" -} \ No newline at end of file diff --git a/www/master/shared/config/development.json b/www/master/shared/config/development.json index ab4652ab524c3..bf02f7d84e1ff 100644 --- a/www/master/shared/config/development.json +++ b/www/master/shared/config/development.json @@ -1,5 +1,6 @@ { "k8sApiServer": "/api/v1beta2", + "k8sApiv1beta3Server": "/api/v1beta3", "k8sDataServer": "/cluster", "k8sDataPollMinIntervalSec": 10, "k8sDataPollMaxIntervalSec": 120, diff --git a/www/master/shared/config/generated-config.js b/www/master/shared/config/generated-config.js index ef1d6a22591a6..254bc5db044b3 100644 --- a/www/master/shared/config/generated-config.js +++ b/www/master/shared/config/generated-config.js @@ -3,6 +3,7 @@ angular.module("kubernetesApp.config", []) .constant("ENV", { "/": { "k8sApiServer": "/api/v1beta2", + "k8sApiv1beta3Server": "/api/v1beta3", "k8sDataServer": "/cluster", "k8sDataPollMinIntervalSec": 10, "k8sDataPollMaxIntervalSec": 120, diff --git a/www/master/shared/js/modules/services/cAdvisor.js b/www/master/shared/js/modules/services/cAdvisor.js index c4e96ba439d93..7ece0a6e187ef 100644 --- a/www/master/shared/js/modules/services/cAdvisor.js +++ b/www/master/shared/js/modules/services/cAdvisor.js @@ -5,7 +5,7 @@ .service('cAdvisorService', function($http, $q, ENV) { var _baseUrl = function(minionIp) { var minionPort = ENV['/']['cAdvisorPort'] || "8081"; - var proxy = ENV['/']['cAdvisorProxy'] || "/api/v1beta2/proxy/nodes/"; + var proxy = ENV['/']['cAdvisorProxy'] || "/api/v1beta3/proxy/nodes/"; return proxy + minionIp + ':' + minionPort + '/api/v1.0/'; }; diff --git a/www/master/shared/js/modules/services/k8sApiService.js b/www/master/shared/js/modules/services/k8sApiService.js index 14df888f3db0e..819a99637f90f 100644 --- a/www/master/shared/js/modules/services/k8sApiService.js +++ b/www/master/shared/js/modules/services/k8sApiService.js @@ -40,3 +40,51 @@ app.provider('k8sApi', k8sApiProvider.setUrlBase(proxy + ENV['/']['k8sApiServer']); } }); + +app.provider('k8sv1Beta3Api', + function() { + + var urlBase = ''; + var _namespace = 'default'; + + this.setUrlBase = function(value) { urlBase = value; }; + + this.setNamespace = function(value) { _namespace = value; }; + this.getNamespace = function() { return _namespace; }; + + var _get = function($http, baseUrl, query) { + var _fullUrl = baseUrl; + + if (query !== undefined) { + _fullUrl += '/' + query; + } + + return $http.get(_fullUrl); + }; + + this.$get = function($http, $q) { + var api = {}; + + api.getUrlBase = function() { return urlBase + '/namespaces/' + _namespace; }; + + api.getPods = function(query) { return _get($http, api.getUrlBase() + '/pods', query); }; + + api.getMinions = function(query) { return _get($http, urlBase + '/nodes', query); }; + + api.getServices = function(query) { return _get($http, api.getUrlBase() + '/services', query); }; + + api.getReplicationControllers = function(query) { + return _get($http, api.getUrlBase() + '/replicationcontrollers', query) + }; + + api.getEvents = function(query) { return _get($http, api.getUrlBase() + '/events', query); }; + + return api; + }; + }) + .config(function(k8sv1Beta3ApiProvider, ENV) { + if (ENV && ENV['/'] && ENV['/']['k8sApiv1beta3Server']) { + var proxy = ENV['/']['cAdvisorProxy'] || ''; + k8sv1Beta3ApiProvider.setUrlBase(proxy + ENV['/']['k8sApiv1beta3Server']); + } + });