Add test/test_owners.csv, for automatic assignment of test failures.

This file will be read by the munger -- see kubernetes/contrib#1264

This also includes a simple script to do minor automatic updates to the
CSV.
pull/6/head
Ryan Hitchman 2016-07-01 17:34:47 -07:00
parent 251798d9aa
commit 3d485098c3
3 changed files with 875 additions and 0 deletions

111
hack/update_owners.py Executable file
View File

@ -0,0 +1,111 @@
#!/usr/bin/env python
# Copyright 2016 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import csv
import re
import json
import os
import sys
import time
import urllib2
import zlib
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
OWNERS_PATH = os.path.abspath(os.path.join(BASE_DIR, '..', 'test', 'test_owners.csv'))
def get_test_history():
url = time.strftime('https://storage.googleapis.com/kubernetes-test-history/logs/%Y-%m-%d.json')
resp = urllib2.urlopen(url)
content = resp.read()
if resp.headers.get('content-encoding') == 'gzip':
content = zlib.decompress(content, 15 | 16)
return json.loads(content)
def normalize(name):
name = re.sub(r'\[.*?\]|\{.*?\}', '', name)
name = re.sub(r'\s+', ' ', name)
return name.strip()
def load_owners(fname):
owners = {}
for n, (name, owner, random_assignment) in enumerate(csv.reader(open(fname))):
if n == 0:
continue # header
owners[normalize(name)] = (owner, int(random_assignment))
return owners
def write_owners(fname, owners):
out = csv.writer(open(fname, 'w'))
out.writerow(['name', 'owner', 'auto-assigned'])
for name, (owner, random_assignment) in sorted(owners.items()):
out.writerow([name, owner, int(random_assignment)])
def get_maintainers():
# Github doesn't seem to support team membership listing without org admin privileges.
# Instead, we do it manually:
# Open https://github.com/orgs/kubernetes/teams/kubernetes-maintainers
# Run this in the js console:
# [].slice.call(document.querySelectorAll('.team-member-username a')).map(e => e.textContent.trim())
return ["a-robinson", "alex-mohr", "amygdala", "andyzheng0831", "apelisse", "aronchick",
"ArtfulCoder", "bgrant0607", "bgrant0607-nocc", "bprashanth", "brendandburns",
"caesarxuchao", "childsb", "cjcullen", "david-mcmahon", "davidopp", "dchen1107",
"deads2k", "derekwaynecarr", "dubstack", "eparis", "erictune", "fabioy",
"fejta", "fgrzadkowski", "freehan", "ghodss", "girishkalele", "gmarek",
"goltermann", "grodrigues3", "hurf", "ingvagabund", "ixdy",
"jackgr", "janetkuo", "jbeda", "jdef", "jingxu97", "jlowdermilk",
"jsafrane", "jszczepkowski", "justinsb", "kargakis", "karlkfi",
"kelseyhightower", "kevin-wangzefeng", "krousey", "lavalamp",
"liggitt", "luxas", "madhusudancs", "maisem", "mansoorj",
"matchstick", "mikedanese", "mml", "mtaufen", "mwielgus", "ncdc",
"nikhiljindal", "piosz", "pmorie", "pwittrock", "Q-Lee", "quinton-hoole",
"Random-Liu", "rmmh", "roberthbailey", "ronnielai", "saad-ali", "sarahnovotny",
"smarterclayton", "soltysh", "spxtr", "sttts", "swagiaal", "thockin",
"timothysc", "timstclair", "tmrts", "vishh", "vulpecula", "wojtek-t", "xiang90",
"yifan-gu", "yujuhong", "zmerlynn"]
def main():
test_history = get_test_history()
test_names = sorted(set(map(normalize, test_history['test_names'])))
owners = load_owners(OWNERS_PATH)
outdated_tests = sorted(set(owners) - set(test_names))
new_tests = sorted(set(test_names) - set(owners))
maintainers = get_maintainers()
print '# OUTDATED TESTS (%d):' % len(outdated_tests)
print '\n'.join(outdated_tests)
print '# NEW TESTS (%d):' % len(new_tests)
print '\n'.join(new_tests)
for name in outdated_tests:
owners.pop(name)
print '# UNEXPECTED MAINTAINERS (randomly assigned, not in kubernetes-maintainers)'
for name, (owner, random_assignment) in sorted(owners.iteritems()):
if random_assignment and owner not in maintainers:
print '%-16s %s' % (owner, name)
write_owners(OWNERS_PATH + '.new', owners)
if __name__ == '__main__':
main()

1
test/.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
test_owners.csv merge=union

763
test/test_owners.csv Normal file
View File

@ -0,0 +1,763 @@
test name,owner,auto-assigned
Addon update should propagate add-on file changes,eparis,1
Autoscaling should scale cluster size based on cpu reservation,davidopp,1
Autoscaling should scale cluster size based on cpu utilization,thockin,1
Autoscaling should scale cluster size based on memory reservation,hurf,1
Autoscaling should scale cluster size based on memory utilization,davidopp,1
BeforeSuite,ixdy,0
Cadvisor should be healthy on every node.,vishh,0
Cassandra should create and scale cassandra,fabioy,1
Celery-RabbitMQ should create and stop celery+rabbitmq servers,luxas,1
Clean up pods on node kubelet should be able to delete 10 pods per node in 1m0s.,lavalamp,1
Cluster level logging using Elasticsearch should check that logs from pods on all nodes are ingested into Elasticsearch,david-mcmahon,1
Cluster size autoscaling Should correctly handle pending pods,jszczepkowski,0
Cluster size autoscaling Should scale cluster size based on cpu reservation,dchen1107,1
Cluster size autoscaling Should scale cluster size based on cpu utilization,a-robinson,1
Cluster size autoscaling Should scale cluster size based on memory reservation,ghodss,1
Cluster size autoscaling Should scale cluster size based on memory utilization,childsb,1
ClusterDns should create pod that uses dns,sttts,0
ConfigMap should be consumable from pods in volume,alex-mohr,1
ConfigMap should be consumable from pods in volume as non-root,ArtfulCoder,1
ConfigMap should be consumable from pods in volume as non-root with FSGroup,roberthbailey,1
ConfigMap should be consumable from pods in volume with mappings,karlkfi,1
ConfigMap should be consumable from pods in volume with mappings as non-root,apelisse,1
ConfigMap should be consumable from pods in volume with mappings as non-root with FSGroup,zmerlynn,1
ConfigMap should be consumable via environment variable,a-robinson,1
ConfigMap updates should be reflected in volume,kevin-wangzefeng,1
Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should be able to pull image from gcr.io ,Random-Liu,0
Daemon set should launch a daemon pod on every node of the cluster,andyzheng0831,1
Daemon set should run and stop complex daemon,ArtfulCoder,1
Daemon set should run and stop simple daemon,mtaufen,1
DaemonRestart Controller Manager should not create/delete replicas across restart,vulpecula,1
DaemonRestart Kubelet should not restart containers across restart,madhusudancs,1
DaemonRestart Scheduler should continue assigning pods to nodes across restart,lavalamp,1
Density should allow starting 100 pods per node,wojtek-t,0
Density should allow starting 3 pods per node,gmarek,0
Density should allow starting 30 pods per node,gmarek,0
Density should allow starting 50 pods per node,wojtek-t,0
Density should allow starting 95 pods per node,wojtek-t,0
Deployment deployment should create new pods,pwittrock,0
Deployment deployment should delete old pods and create new ones,nikhiljindal,0
Deployment deployment should delete old replica sets,pwittrock,0
Deployment deployment should label adopted RSs and pods,pwittrock,0
Deployment deployment should scale up and down in the right order,pwittrock,0
Deployment deployment should support rollback,pwittrock,0
Deployment deployment should support rollback when there's replica set with no revision,pwittrock,0
Deployment deployment should support rollover,pwittrock,0
Deployment paused deployment should be ignored by the controller,kargakis,0
Deployment RecreateDeployment should delete old pods and create new ones,pwittrock,0
Deployment RollingUpdateDeployment should delete old pods and create new ones,pwittrock,0
Deployment RollingUpdateDeployment should scale up and down in the right order,pwittrock,0
DNS should provide DNS for pods for Hostname and Subdomain Annotation,mtaufen,1
DNS should provide DNS for services,roberthbailey,1
DNS should provide DNS for the cluster,roberthbailey,1
Docker Containers should be able to override the image's default arguments (docker cmd),maisem,0
Docker Containers should be able to override the image's default command and arguments,maisem,0
Docker Containers should be able to override the image's default commmand (docker entrypoint),maisem,0
Docker Containers should use the image defaults if command and args are blank,vishh,0
Downward API should create a pod that prints his name and namespace,nhlfr,0
Downward API should provide default limits.cpu/memory from node capacity,derekwaynecarr,0
Downward API should provide pod IP as an env var,nhlfr,0
Downward API should provide pod name and namespace as env vars,nhlfr,0
Downward API volume should provide labels and annotations files,nhlfr,0
Downward API volume should provide podname as non-root with fsgroup,karlkfi,1
Downward API volume should provide podname only,mwielgus,1
Downward API volume should update annotations on modification,eparis,1
Downward API volume should update labels on modification,timothysc,1
Dynamic provisioning DynamicProvisioner should create and delete persistent volumes,jsafrane,0
EmptyDir volumes should have the correct mode,mikedanese,1
"EmptyDir volumes should support (non-root,0644,default)",timstclair,1
"EmptyDir volumes should support (non-root,0644,tmpfs)",spxtr,1
"EmptyDir volumes should support (non-root,0666,default)",dchen1107,1
"EmptyDir volumes should support (non-root,0666,tmpfs)",apelisse,1
"EmptyDir volumes should support (non-root,0777,default)",mwielgus,1
"EmptyDir volumes should support (non-root,0777,tmpfs)",smarterclayton,1
"EmptyDir volumes should support (root,0644,default)",mtaufen,1
"EmptyDir volumes should support (root,0644,tmpfs)",madhusudancs,1
"EmptyDir volumes should support (root,0666,default)",brendandburns,1
"EmptyDir volumes should support (root,0666,tmpfs)",davidopp,1
"EmptyDir volumes should support (root,0777,default)",spxtr,1
"EmptyDir volumes should support (root,0777,tmpfs)",alex-mohr,1
EmptyDir volumes should support r/w,davidopp,1
EmptyDir volumes volume on default medium should have the correct mode,girishkalele,1
EmptyDir volumes volume on tmpfs should have the correct mode,mwielgus,1
EmptyDir volumes when FSGroup is specified new files should be created with FSGroup ownership when container is non-root,brendandburns,1
EmptyDir volumes when FSGroup is specified new files should be created with FSGroup ownership when container is root,childsb,1
EmptyDir volumes when FSGroup is specified volume on default medium should have the correct mode using FSGroup,ArtfulCoder,1
EmptyDir volumes when FSGroup is specified volume on tmpfs should have the correct mode using FSGroup,timothysc,1
EmptyDir wrapper volumes should becomes running,deads2k,1
Etcd failure should recover from network partition with master,justinsb,1
Etcd failure should recover from SIGKILL,pmorie,1
Events should be sent by kubelets and the scheduler about pods scheduling and running,zmerlynn,1
Examples e2e Cassandra should create and scale cassandra,bgrant0607,1
Examples e2e Celery-RabbitMQ should create and stop celery+rabbitmq servers,apelisse,1
Examples e2e ClusterDns should create pod that uses dns,kargakis,1
Examples e2e Downward API should create a pod that prints his name and namespace,roberthbailey,1
Examples e2e Hazelcast should create and scale hazelcast,a-robinson,1
Examples e2e Liveness liveness pods should be automatically restarted,lavalamp,1
Examples e2e Redis should create and stop redis servers,spxtr,1
Examples e2e RethinkDB should create and stop rethinkdb servers,andyzheng0831,1
Examples e2e Secret should create a pod that reads a secret,alex-mohr,1
"Examples e2e Spark should start spark master, driver and workers",maisem,1
"Examples e2e Storm should create and stop Zookeeper, Nimbus and Storm worker servers",mwielgus,1
Federated Services DNS non-local federated service missing local service should never find DNS entries for a missing local service,mml,0
Garbage collector should handle the creation of 1000 pods,wonderfly,1
GCE L7 LoadBalancer Controller should create GCE L7 loadbalancers and verify Ingress,bprashanth,0
"Generated release_1_2 clientset should create pods, delete pods, watch pods",ncdc,1
"Generated release_1_3 clientset should create pods, delete pods, watch pods",krousey,1
GKE local SSD should write and read from node local SSD,fabioy,0
Hazelcast should create and scale hazelcast,mikedanese,1
Horizontal pod autoscaling (scale resource: CPU) Deployment Should scale from 1 pod to 3 pods and from 3 to 5 and verify decision stability,jszczepkowski,0
Horizontal pod autoscaling (scale resource: CPU) Deployment Should scale from 5 pods to 3 pods and from 3 to 1 and verify decision stability,jszczepkowski,0
Horizontal pod autoscaling (scale resource: CPU) ReplicaSet Should scale from 1 pod to 3 pods and from 3 to 5 and verify decision stability,jszczepkowski,0
Horizontal pod autoscaling (scale resource: CPU) ReplicaSet Should scale from 5 pods to 3 pods and from 3 to 1 and verify decision stability,jszczepkowski,0
Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 1 pod to 2 pods,jszczepkowski,0
Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 2 pods to 1 pod,jszczepkowski,0
Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 2 pods to 1 pod using HPA version v1,jszczepkowski,0
Horizontal pod autoscaling (scale resource: CPU) ReplicationController Should scale from 1 pod to 3 pods and from 3 to 5 and verify decision stability,jszczepkowski,0
Horizontal pod autoscaling (scale resource: CPU) ReplicationController Should scale from 5 pods to 3 pods and from 3 to 1 and verify decision stability,jszczepkowski,0
Horizontal pod autoscaling should scale from 1 pod to 3 pods and from 3 to 5 (scale resource: CPU),jszczepkowski,0
Horizontal pod autoscaling should scale from 5 pods to 3 pods and from 3 to 1 (scale resource: CPU),jszczepkowski,0
hostDir should give a volume the correct mode,bgrant0607,1
hostDir should support r/w on tmpfs,erictune,0
hostPath should give a volume the correct mode,roberthbailey,1
hostPath should support r/w,roberthbailey,1
hostPath should support subPath,krousey,1
Initial Resources should set initial resources based on historical data,piosz,0
Job should delete a job,soltysh,0
Job should fail a job,soltysh,0
Job should keep restarting failed pods,soltysh,0
Job should run a job to completion when tasks sometimes fail and are locally restarted,soltysh,0
Job should run a job to completion when tasks sometimes fail and are not locally restarted,soltysh,0
Job should run a job to completion when tasks succeed,soltysh,0
Job should scale a job down,soltysh,0
Job should scale a job up,soltysh,0
Job should stop a job,soltysh,0
k8s.io/kubernetes/cluster/addons/dns/kube2sky,zmerlynn,1
k8s.io/kubernetes/cmd/genutils,rmmh,1
k8s.io/kubernetes/cmd/hyperkube,jbeda,0
k8s.io/kubernetes/cmd/kube-apiserver/app,nikhiljindal,0
k8s.io/kubernetes/cmd/kube-apiserver/app/options,nikhiljindal,0
k8s.io/kubernetes/cmd/kube-proxy/app,luxas,1
k8s.io/kubernetes/cmd/kubelet/app,hurf,1
k8s.io/kubernetes/cmd/kubernetes-discovery/discoverysummarizer,thockin,1
k8s.io/kubernetes/cmd/libs/go2idl/client-gen/testoutput/clientset_generated/test_internalclientset,Random-Liu,1
k8s.io/kubernetes/cmd/libs/go2idl/client-gen/testoutput/clientset_generated/test_internalclientset/typed/testgroup.k8s.io/unversioned,eparis,1
k8s.io/kubernetes/cmd/libs/go2idl/client-gen/testoutput/testgroup/unversioned,ArtfulCoder,1
k8s.io/kubernetes/cmd/libs/go2idl/generator,ixdy,1
k8s.io/kubernetes/cmd/libs/go2idl/import-boss/generators,kevin-wangzefeng,1
k8s.io/kubernetes/cmd/libs/go2idl/namer,luxas,1
k8s.io/kubernetes/cmd/libs/go2idl/parser,lavalamp,1
k8s.io/kubernetes/cmd/libs/go2idl/types,mikedanese,1
k8s.io/kubernetes/cmd/mungedocs,mwielgus,1
k8s.io/kubernetes/contrib/mesos/cmd/km,brendandburns,1
k8s.io/kubernetes/contrib/mesos/pkg/archive,kargakis,1
k8s.io/kubernetes/contrib/mesos/pkg/election,vulpecula,1
k8s.io/kubernetes/contrib/mesos/pkg/executor,mhrgoog,1
k8s.io/kubernetes/contrib/mesos/pkg/minion/tasks,hurf,1
k8s.io/kubernetes/contrib/mesos/pkg/node,jdef,1
k8s.io/kubernetes/contrib/mesos/pkg/offers,david-mcmahon,1
k8s.io/kubernetes/contrib/mesos/pkg/podutil,Q-Lee,1
k8s.io/kubernetes/contrib/mesos/pkg/proc,apelisse,1
k8s.io/kubernetes/contrib/mesos/pkg/queue,caesarxuchao,1
k8s.io/kubernetes/contrib/mesos/pkg/redirfd,cjcullen,1
k8s.io/kubernetes/contrib/mesos/pkg/runtime,davidopp,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler,jbeda,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/deleter,karlkfi,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/framework,kevin-wangzefeng,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/config,dchen1107,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/constraint,dchen1107,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/executorinfo,luxas,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/integration,yifan-gu,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask,mhrgoog,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask/hostport,mml,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/resources,ixdy,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/service,madhusudancs,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/slave,rmmh,1
k8s.io/kubernetes/contrib/mesos/pkg/scheduler/uid,jlowdermilk,1
k8s.io/kubernetes/contrib/mesos/pkg/service,jdef,1
k8s.io/kubernetes/examples,Random-Liu,0
k8s.io/kubernetes/examples/apiserver,nikhiljindal,0
k8s.io/kubernetes/federation/apis/federation/install,nikhiljindal,0
k8s.io/kubernetes/federation/apis/federation/validation,nikhiljindal,0
k8s.io/kubernetes/federation/cmd/federated-apiserver/app,nikhiljindal,0
k8s.io/kubernetes/federation/pkg/federation-controller/cluster,nikhiljindal,0
k8s.io/kubernetes/federation/registry/cluster,nikhiljindal,0
k8s.io/kubernetes/federation/registry/cluster/etcd,nikhiljindal,0
k8s.io/kubernetes/hack/cmd/teststale,mhrgoog,1
k8s.io/kubernetes/pkg/admission,dchen1107,1
k8s.io/kubernetes/pkg/api,Q-Lee,1
k8s.io/kubernetes/pkg/api/endpoints,swagiaal,1
k8s.io/kubernetes/pkg/api/errors,yifan-gu,1
k8s.io/kubernetes/pkg/api/install,timothysc,1
k8s.io/kubernetes/pkg/api/latest,ixdy,1
k8s.io/kubernetes/pkg/api/meta,fabioy,1
k8s.io/kubernetes/pkg/api/pod,piosz,1
k8s.io/kubernetes/pkg/api/resource,smarterclayton,1
k8s.io/kubernetes/pkg/api/rest,ixdy,1
k8s.io/kubernetes/pkg/api/service,spxtr,1
k8s.io/kubernetes/pkg/api/testapi,wonderfly,1
k8s.io/kubernetes/pkg/api/unversioned,kevin-wangzefeng,1
k8s.io/kubernetes/pkg/api/unversioned/validation,brendandburns,1
k8s.io/kubernetes/pkg/api/util,ghodss,1
k8s.io/kubernetes/pkg/api/v1,vulpecula,1
k8s.io/kubernetes/pkg/api/validation,smarterclayton,1
k8s.io/kubernetes/pkg/apimachinery/registered,jlowdermilk,1
k8s.io/kubernetes/pkg/apis/abac/v0,liggitt,0
k8s.io/kubernetes/pkg/apis/apps/validation,derekwaynecarr,1
k8s.io/kubernetes/pkg/apis/authorization/validation,erictune,0
k8s.io/kubernetes/pkg/apis/autoscaling/validation,Random-Liu,1
k8s.io/kubernetes/pkg/apis/batch/validation,erictune,0
k8s.io/kubernetes/pkg/apis/componentconfig,jbeda,1
k8s.io/kubernetes/pkg/apis/componentconfig/install,pmorie,1
k8s.io/kubernetes/pkg/apis/extensions,jbeda,1
k8s.io/kubernetes/pkg/apis/extensions/install,thockin,1
k8s.io/kubernetes/pkg/apis/extensions/v1beta1,madhusudancs,1
k8s.io/kubernetes/pkg/apis/extensions/validation,Random-Liu,1
k8s.io/kubernetes/pkg/apis/policy/validation,deads2k,1
k8s.io/kubernetes/pkg/apis/rbac/validation,erictune,0
k8s.io/kubernetes/pkg/apiserver,nikhiljindal,0
k8s.io/kubernetes/pkg/auth/authenticator/bearertoken,liggitt,0
k8s.io/kubernetes/pkg/auth/authorizer/abac,liggitt,0
k8s.io/kubernetes/pkg/auth/authorizer/union,liggitt,0
k8s.io/kubernetes/pkg/auth/handlers,liggitt,0
k8s.io/kubernetes/pkg/client/cache,xiang90,1
k8s.io/kubernetes/pkg/client/chaosclient,a-robinson,1
k8s.io/kubernetes/pkg/client/leaderelection,xiang90,1
k8s.io/kubernetes/pkg/client/record,karlkfi,1
k8s.io/kubernetes/pkg/client/restclient,kargakis,1
k8s.io/kubernetes/pkg/client/transport,eparis,1
k8s.io/kubernetes/pkg/client/typed/discovery,ihmccreery,1
k8s.io/kubernetes/pkg/client/typed/dynamic,luxas,1
k8s.io/kubernetes/pkg/client/unversioned,justinsb,1
k8s.io/kubernetes/pkg/client/unversioned/auth,swagiaal,1
k8s.io/kubernetes/pkg/client/unversioned/clientcmd,yifan-gu,1
k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api,mhrgoog,1
k8s.io/kubernetes/pkg/client/unversioned/portforward,lavalamp,1
k8s.io/kubernetes/pkg/client/unversioned/remotecommand,andyzheng0831,1
k8s.io/kubernetes/pkg/client/unversioned/testclient,brendandburns,1
k8s.io/kubernetes/pkg/cloudprovider/providers/aws,eparis,1
k8s.io/kubernetes/pkg/cloudprovider/providers/gce,yifan-gu,1
k8s.io/kubernetes/pkg/cloudprovider/providers/mesos,mml,1
k8s.io/kubernetes/pkg/cloudprovider/providers/openstack,Q-Lee,1
k8s.io/kubernetes/pkg/cloudprovider/providers/ovirt,girishkalele,1
k8s.io/kubernetes/pkg/cloudprovider/providers/rackspace,caesarxuchao,1
k8s.io/kubernetes/pkg/cloudprovider/providers/vagrant,caesarxuchao,1
k8s.io/kubernetes/pkg/cloudprovider/providers/vsphere,apelisse,1
k8s.io/kubernetes/pkg/controller,mikedanese,1
k8s.io/kubernetes/pkg/controller/daemon,Q-Lee,1
k8s.io/kubernetes/pkg/controller/deployment,asalkeld,0
k8s.io/kubernetes/pkg/controller/endpoint,Random-Liu,1
k8s.io/kubernetes/pkg/controller/framework,mhrgoog,1
k8s.io/kubernetes/pkg/controller/garbagecollector,rmmh,1
k8s.io/kubernetes/pkg/controller/gc,jdef,1
k8s.io/kubernetes/pkg/controller/job,soltysh,0
k8s.io/kubernetes/pkg/controller/namespace,ihmccreery,1
k8s.io/kubernetes/pkg/controller/node,gmarek,0
k8s.io/kubernetes/pkg/controller/persistentvolume,jsafrane,0
k8s.io/kubernetes/pkg/controller/petset,david-mcmahon,1
k8s.io/kubernetes/pkg/controller/podautoscaler,piosz,0
k8s.io/kubernetes/pkg/controller/podautoscaler/metrics,piosz,0
k8s.io/kubernetes/pkg/controller/replicaset,fgrzadkowski,0
k8s.io/kubernetes/pkg/controller/replication,fgrzadkowski,0
k8s.io/kubernetes/pkg/controller/resourcequota,ghodss,1
k8s.io/kubernetes/pkg/controller/route,gmarek,0
k8s.io/kubernetes/pkg/controller/service,asalkeld,0
k8s.io/kubernetes/pkg/controller/serviceaccount,liggitt,0
k8s.io/kubernetes/pkg/controller/volume/cache,saad-ali,0
k8s.io/kubernetes/pkg/conversion,swagiaal,1
k8s.io/kubernetes/pkg/conversion/queryparams,caesarxuchao,1
k8s.io/kubernetes/pkg/credentialprovider,justinsb,1
k8s.io/kubernetes/pkg/credentialprovider/aws,zmerlynn,1
k8s.io/kubernetes/pkg/credentialprovider/gcp,mml,1
k8s.io/kubernetes/pkg/dns,jdef,1
k8s.io/kubernetes/pkg/fieldpath,childsb,1
k8s.io/kubernetes/pkg/fields,jsafrane,1
k8s.io/kubernetes/pkg/genericapiserver,nikhiljindal,0
k8s.io/kubernetes/pkg/healthz,thockin,1
k8s.io/kubernetes/pkg/httplog,mtaufen,1
k8s.io/kubernetes/pkg/kubectl,ihmccreery,1
k8s.io/kubernetes/pkg/kubectl/cmd,wonderfly,1
k8s.io/kubernetes/pkg/kubectl/cmd/config,asalkeld,0
k8s.io/kubernetes/pkg/kubectl/cmd/util,asalkeld,0
k8s.io/kubernetes/pkg/kubectl/cmd/util/editor,jdef,1
k8s.io/kubernetes/pkg/kubectl/cmd/util/jsonmerge,Q-Lee,1
k8s.io/kubernetes/pkg/kubectl/resource,caesarxuchao,1
k8s.io/kubernetes/pkg/kubelet,vishh,0
k8s.io/kubernetes/pkg/kubelet/client,timstclair,1
k8s.io/kubernetes/pkg/kubelet/cm,vishh,0
k8s.io/kubernetes/pkg/kubelet/config,mikedanese,1
k8s.io/kubernetes/pkg/kubelet/container,yujuhong,0
k8s.io/kubernetes/pkg/kubelet/custommetrics,kevin-wangzefeng,0
k8s.io/kubernetes/pkg/kubelet/dockertools,deads2k,1
k8s.io/kubernetes/pkg/kubelet/envvars,karlkfi,1
k8s.io/kubernetes/pkg/kubelet/eviction,childsb,1
k8s.io/kubernetes/pkg/kubelet/lifecycle,david-mcmahon,1
k8s.io/kubernetes/pkg/kubelet/network,freehan,0
k8s.io/kubernetes/pkg/kubelet/network/cni,freehan,0
k8s.io/kubernetes/pkg/kubelet/network/exec,freehan,0
k8s.io/kubernetes/pkg/kubelet/network/hairpin,freehan,0
k8s.io/kubernetes/pkg/kubelet/network/kubenet,freehan,0
k8s.io/kubernetes/pkg/kubelet/pleg,yujuhong,0
k8s.io/kubernetes/pkg/kubelet/pod,alex-mohr,1
k8s.io/kubernetes/pkg/kubelet/prober,alex-mohr,1
k8s.io/kubernetes/pkg/kubelet/prober/results,krousey,1
k8s.io/kubernetes/pkg/kubelet/qos,vishh,0
k8s.io/kubernetes/pkg/kubelet/qos/util,vishh,0
k8s.io/kubernetes/pkg/kubelet/rkt,apelisse,1
k8s.io/kubernetes/pkg/kubelet/server,timstclair,0
k8s.io/kubernetes/pkg/kubelet/server/stats,timstclair,0
k8s.io/kubernetes/pkg/kubelet/status,mwielgus,1
k8s.io/kubernetes/pkg/kubelet/types,jlowdermilk,1
k8s.io/kubernetes/pkg/kubelet/util/cache,timothysc,1
k8s.io/kubernetes/pkg/kubelet/util/format,a-robinson,1
k8s.io/kubernetes/pkg/kubelet/util/queue,yujuhong,0
k8s.io/kubernetes/pkg/labels,ixdy,1
k8s.io/kubernetes/pkg/master,fabioy,1
k8s.io/kubernetes/pkg/probe/exec,bgrant0607,1
k8s.io/kubernetes/pkg/probe/http,david-mcmahon,1
k8s.io/kubernetes/pkg/probe/tcp,mtaufen,1
k8s.io/kubernetes/pkg/proxy/config,wonderfly,1
k8s.io/kubernetes/pkg/proxy/iptables,freehan,0
k8s.io/kubernetes/pkg/proxy/userspace,luxas,1
k8s.io/kubernetes/pkg/quota,ihmccreery,1
k8s.io/kubernetes/pkg/registry/componentstatus,yifan-gu,1
k8s.io/kubernetes/pkg/registry/configmap,timothysc,1
k8s.io/kubernetes/pkg/registry/configmap/etcd,ihmccreery,1
k8s.io/kubernetes/pkg/registry/controller,jdef,1
k8s.io/kubernetes/pkg/registry/controller/etcd,spxtr,1
k8s.io/kubernetes/pkg/registry/daemonset,a-robinson,1
k8s.io/kubernetes/pkg/registry/daemonset/etcd,pmorie,1
k8s.io/kubernetes/pkg/registry/deployment,timothysc,1
k8s.io/kubernetes/pkg/registry/deployment/etcd,ihmccreery,1
k8s.io/kubernetes/pkg/registry/endpoint,smarterclayton,1
k8s.io/kubernetes/pkg/registry/endpoint/etcd,a-robinson,1
k8s.io/kubernetes/pkg/registry/event,girishkalele,1
k8s.io/kubernetes/pkg/registry/event/etcd,karlkfi,1
k8s.io/kubernetes/pkg/registry/experimental/controller/etcd,smarterclayton,1
k8s.io/kubernetes/pkg/registry/generic,eparis,1
k8s.io/kubernetes/pkg/registry/generic/etcd,fabioy,1
k8s.io/kubernetes/pkg/registry/generic/registry,jsafrane,1
k8s.io/kubernetes/pkg/registry/generic/rest,smarterclayton,1
k8s.io/kubernetes/pkg/registry/horizontalpodautoscaler,jszczepkowski,0
k8s.io/kubernetes/pkg/registry/horizontalpodautoscaler/etcd,jszczepkowski,0
k8s.io/kubernetes/pkg/registry/ingress,jsafrane,1
k8s.io/kubernetes/pkg/registry/ingress/etcd,vulpecula,1
k8s.io/kubernetes/pkg/registry/job,soltysh,0
k8s.io/kubernetes/pkg/registry/job/etcd,soltysh,0
k8s.io/kubernetes/pkg/registry/limitrange,apelisse,1
k8s.io/kubernetes/pkg/registry/limitrange/etcd,zmerlynn,1
k8s.io/kubernetes/pkg/registry/namespace,roberthbailey,1
k8s.io/kubernetes/pkg/registry/namespace/etcd,justinsb,1
k8s.io/kubernetes/pkg/registry/node,krousey,1
k8s.io/kubernetes/pkg/registry/node/etcd,kevin-wangzefeng,1
k8s.io/kubernetes/pkg/registry/persistentvolume,kevin-wangzefeng,1
k8s.io/kubernetes/pkg/registry/persistentvolume/etcd,andyzheng0831,1
k8s.io/kubernetes/pkg/registry/persistentvolumeclaim,bgrant0607,1
k8s.io/kubernetes/pkg/registry/persistentvolumeclaim/etcd,deads2k,1
k8s.io/kubernetes/pkg/registry/petset,rmmh,1
k8s.io/kubernetes/pkg/registry/petset/etcd,dchen1107,1
k8s.io/kubernetes/pkg/registry/pod,alex-mohr,1
k8s.io/kubernetes/pkg/registry/pod/etcd,justinsb,1
k8s.io/kubernetes/pkg/registry/pod/rest,childsb,1
k8s.io/kubernetes/pkg/registry/poddisruptionbudget,jsafrane,1
k8s.io/kubernetes/pkg/registry/poddisruptionbudget/etcd,alex-mohr,1
k8s.io/kubernetes/pkg/registry/podsecuritypolicy/etcd,yifan-gu,1
k8s.io/kubernetes/pkg/registry/podtemplate,jsafrane,1
k8s.io/kubernetes/pkg/registry/podtemplate/etcd,mtaufen,1
k8s.io/kubernetes/pkg/registry/replicaset,mwielgus,1
k8s.io/kubernetes/pkg/registry/replicaset/etcd,deads2k,1
k8s.io/kubernetes/pkg/registry/resourcequota,maisem,1
k8s.io/kubernetes/pkg/registry/resourcequota/etcd,cjcullen,1
k8s.io/kubernetes/pkg/registry/scheduledjob,soltysh,0
k8s.io/kubernetes/pkg/registry/secret,spxtr,1
k8s.io/kubernetes/pkg/registry/secret/etcd,brendandburns,1
k8s.io/kubernetes/pkg/registry/service,thockin,1
k8s.io/kubernetes/pkg/registry/service/allocator,pmorie,1
k8s.io/kubernetes/pkg/registry/service/allocator/etcd,caesarxuchao,1
k8s.io/kubernetes/pkg/registry/service/etcd,alex-mohr,1
k8s.io/kubernetes/pkg/registry/service/ipallocator,jlowdermilk,1
k8s.io/kubernetes/pkg/registry/service/ipallocator/controller,lavalamp,1
k8s.io/kubernetes/pkg/registry/service/ipallocator/etcd,andyzheng0831,1
k8s.io/kubernetes/pkg/registry/service/portallocator,karlkfi,1
k8s.io/kubernetes/pkg/registry/serviceaccount,liggitt,0
k8s.io/kubernetes/pkg/registry/serviceaccount/etcd,liggitt,0
k8s.io/kubernetes/pkg/registry/thirdpartyresource,vulpecula,1
k8s.io/kubernetes/pkg/registry/thirdpartyresource/etcd,hurf,1
k8s.io/kubernetes/pkg/registry/thirdpartyresourcedata,childsb,1
k8s.io/kubernetes/pkg/registry/thirdpartyresourcedata/etcd,lavalamp,1
k8s.io/kubernetes/pkg/runtime,wojtek-t,0
k8s.io/kubernetes/pkg/runtime/serializer,wojtek-t,0
k8s.io/kubernetes/pkg/runtime/serializer/json,wojtek-t,0
k8s.io/kubernetes/pkg/runtime/serializer/protobuf,wojtek-t,0
k8s.io/kubernetes/pkg/runtime/serializer/recognizer,wojtek-t,0
k8s.io/kubernetes/pkg/runtime/serializer/streaming,wojtek-t,0
k8s.io/kubernetes/pkg/runtime/serializer/versioning,wojtek-t,0
k8s.io/kubernetes/pkg/security/podsecuritypolicy,erictune,0
k8s.io/kubernetes/pkg/security/podsecuritypolicy/capabilities,erictune,0
k8s.io/kubernetes/pkg/security/podsecuritypolicy/group,erictune,0
k8s.io/kubernetes/pkg/security/podsecuritypolicy/selinux,erictune,0
k8s.io/kubernetes/pkg/security/podsecuritypolicy/user,erictune,0
k8s.io/kubernetes/pkg/security/podsecuritypolicy/util,erictune,0
k8s.io/kubernetes/pkg/securitycontext,ArtfulCoder,1
k8s.io/kubernetes/pkg/serviceaccount,liggitt,0
k8s.io/kubernetes/pkg/ssh,jbeda,1
k8s.io/kubernetes/pkg/storage,xiang90,0
k8s.io/kubernetes/pkg/storage/etcd,mhrgoog,1
k8s.io/kubernetes/pkg/storage/etcd/util,xiang90,0
k8s.io/kubernetes/pkg/storage/etcd3,xiang90,0
k8s.io/kubernetes/pkg/util,jbeda,1
k8s.io/kubernetes/pkg/util/atomic,kargakis,1
k8s.io/kubernetes/pkg/util/bandwidth,thockin,1
k8s.io/kubernetes/pkg/util/cache,thockin,1
k8s.io/kubernetes/pkg/util/config,girishkalele,1
k8s.io/kubernetes/pkg/util/configz,ixdy,1
k8s.io/kubernetes/pkg/util/dbus,roberthbailey,1
k8s.io/kubernetes/pkg/util/deployment,asalkeld,0
k8s.io/kubernetes/pkg/util/env,asalkeld,0
k8s.io/kubernetes/pkg/util/errors,a-robinson,1
k8s.io/kubernetes/pkg/util/exec,krousey,1
k8s.io/kubernetes/pkg/util/fielderrors,mml,1
k8s.io/kubernetes/pkg/util/flowcontrol,ixdy,1
k8s.io/kubernetes/pkg/util/flushwriter,vulpecula,1
k8s.io/kubernetes/pkg/util/framer,piosz,1
k8s.io/kubernetes/pkg/util/goroutinemap,saad-ali,0
k8s.io/kubernetes/pkg/util/hash,timothysc,1
k8s.io/kubernetes/pkg/util/httpstream,apelisse,1
k8s.io/kubernetes/pkg/util/httpstream/spdy,zmerlynn,1
k8s.io/kubernetes/pkg/util/integer,childsb,1
k8s.io/kubernetes/pkg/util/intstr,brendandburns,1
k8s.io/kubernetes/pkg/util/io,ArtfulCoder,1
k8s.io/kubernetes/pkg/util/iptables,hurf,1
k8s.io/kubernetes/pkg/util/json,liggitt,0
k8s.io/kubernetes/pkg/util/jsonpath,spxtr,1
k8s.io/kubernetes/pkg/util/keymutex,saad-ali,0
k8s.io/kubernetes/pkg/util/labels,rmmh,1
k8s.io/kubernetes/pkg/util/mount,xiang90,1
k8s.io/kubernetes/pkg/util/net,spxtr,1
k8s.io/kubernetes/pkg/util/net/sets,jdef,1
k8s.io/kubernetes/pkg/util/oom,vishh,0
k8s.io/kubernetes/pkg/util/parsers,derekwaynecarr,1
k8s.io/kubernetes/pkg/util/procfs,roberthbailey,1
k8s.io/kubernetes/pkg/util/proxy,cjcullen,1
k8s.io/kubernetes/pkg/util/rand,madhusudancs,1
k8s.io/kubernetes/pkg/util/runtime,davidopp,1
k8s.io/kubernetes/pkg/util/sets,quinton-hoole,0
k8s.io/kubernetes/pkg/util/slice,quinton-hoole,0
k8s.io/kubernetes/pkg/util/strategicpatch,brendandburns,1
k8s.io/kubernetes/pkg/util/strings,quinton-hoole,0
k8s.io/kubernetes/pkg/util/testing,jlowdermilk,1
k8s.io/kubernetes/pkg/util/threading,Random-Liu,1
k8s.io/kubernetes/pkg/util/validation,Q-Lee,1
k8s.io/kubernetes/pkg/util/validation/field,timstclair,1
k8s.io/kubernetes/pkg/util/wait,Q-Lee,1
k8s.io/kubernetes/pkg/util/workqueue,mtaufen,1
k8s.io/kubernetes/pkg/util/wsstream,timothysc,1
k8s.io/kubernetes/pkg/util/yaml,rmmh,1
k8s.io/kubernetes/pkg/version,spxtr,1
k8s.io/kubernetes/pkg/volume,saad-ali,0
k8s.io/kubernetes/pkg/volume/aws_ebs,caesarxuchao,1
k8s.io/kubernetes/pkg/volume/azure_file,maisem,1
k8s.io/kubernetes/pkg/volume/cephfs,eparis,1
k8s.io/kubernetes/pkg/volume/cinder,kargakis,1
k8s.io/kubernetes/pkg/volume/configmap,derekwaynecarr,1
k8s.io/kubernetes/pkg/volume/downwardapi,mikedanese,1
k8s.io/kubernetes/pkg/volume/empty_dir,swagiaal,1
k8s.io/kubernetes/pkg/volume/fc,andyzheng0831,1
k8s.io/kubernetes/pkg/volume/flexvolume,Q-Lee,1
k8s.io/kubernetes/pkg/volume/flocker,jbeda,1
k8s.io/kubernetes/pkg/volume/gce_pd,saad-ali,0
k8s.io/kubernetes/pkg/volume/git_repo,davidopp,1
k8s.io/kubernetes/pkg/volume/glusterfs,ihmccreery,1
k8s.io/kubernetes/pkg/volume/host_path,jbeda,1
k8s.io/kubernetes/pkg/volume/iscsi,cjcullen,1
k8s.io/kubernetes/pkg/volume/nfs,justinsb,1
k8s.io/kubernetes/pkg/volume/persistent_claim,krousey,1
k8s.io/kubernetes/pkg/volume/rbd,swagiaal,1
k8s.io/kubernetes/pkg/volume/secret,rmmh,1
k8s.io/kubernetes/pkg/volume/util,saad-ali,0
k8s.io/kubernetes/pkg/volume/vsphere_volume,deads2k,1
k8s.io/kubernetes/pkg/watch,mwielgus,1
k8s.io/kubernetes/pkg/watch/json,thockin,1
k8s.io/kubernetes/pkg/watch/versioned,childsb,1
k8s.io/kubernetes/plugin/pkg/admission/admit,piosz,1
k8s.io/kubernetes/plugin/pkg/admission/alwayspullimages,kargakis,1
k8s.io/kubernetes/plugin/pkg/admission/antiaffinity,timothysc,1
k8s.io/kubernetes/plugin/pkg/admission/deny,eparis,1
k8s.io/kubernetes/plugin/pkg/admission/exec,deads2k,1
k8s.io/kubernetes/plugin/pkg/admission/initialresources,piosz,0
k8s.io/kubernetes/plugin/pkg/admission/limitranger,ncdc,1
k8s.io/kubernetes/plugin/pkg/admission/namespace/autoprovision,derekwaynecarr,0
k8s.io/kubernetes/plugin/pkg/admission/namespace/exists,derekwaynecarr,0
k8s.io/kubernetes/plugin/pkg/admission/namespace/lifecycle,derekwaynecarr,0
k8s.io/kubernetes/plugin/pkg/admission/persistentvolume/label,jdef,1
k8s.io/kubernetes/plugin/pkg/admission/resourcequota,fabioy,1
k8s.io/kubernetes/plugin/pkg/admission/security/podsecuritypolicy,swagiaal,1
k8s.io/kubernetes/plugin/pkg/admission/securitycontext/scdeny,vulpecula,1
k8s.io/kubernetes/plugin/pkg/admission/serviceaccount,liggitt,0
k8s.io/kubernetes/plugin/pkg/auth/authenticator/password/allow,liggitt,0
k8s.io/kubernetes/plugin/pkg/auth/authenticator/password/passwordfile,liggitt,0
k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/basicauth,liggitt,0
k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/keystone,jlowdermilk,1
k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/union,liggitt,0
k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/x509,liggitt,0
k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/oidc,brendandburns,1
k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/tokenfile,liggitt,0
k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/webhook,ghodss,1
k8s.io/kubernetes/plugin/pkg/auth/authorizer/webhook,hurf,1
k8s.io/kubernetes/plugin/pkg/client/auth/oidc,cjcullen,1
k8s.io/kubernetes/plugin/pkg/scheduler,fgrzadkowski,0
k8s.io/kubernetes/plugin/pkg/scheduler/algorithm,fgrzadkowski,0
k8s.io/kubernetes/plugin/pkg/scheduler/algorithm/predicates,fgrzadkowski,0
k8s.io/kubernetes/plugin/pkg/scheduler/algorithm/priorities,fgrzadkowski,0
k8s.io/kubernetes/plugin/pkg/scheduler/algorithmprovider,fgrzadkowski,0
k8s.io/kubernetes/plugin/pkg/scheduler/algorithmprovider/defaults,fgrzadkowski,0
k8s.io/kubernetes/plugin/pkg/scheduler/api/validation,fgrzadkowski,0
k8s.io/kubernetes/plugin/pkg/scheduler/factory,fgrzadkowski,0
k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache,fgrzadkowski,0
k8s.io/kubernetes/test/integration,lavalamp,1
k8s.io/kubernetes/test/integration TestServiceAccountAutoCreate,swagiaal,0
k8s.io/kubernetes/third_party/forked/reflect,yifan-gu,1
k8s.io/kubernetes/third_party/golang/expansion,dchen1107,1
k8s.io/kubernetes/third_party/golang/go/ast,mml,1
k8s.io/kubernetes/third_party/golang/go/build,pmorie,1
k8s.io/kubernetes/third_party/golang/go/constant,Q-Lee,1
k8s.io/kubernetes/third_party/golang/go/doc,fabioy,1
k8s.io/kubernetes/third_party/golang/go/parser,davidopp,1
k8s.io/kubernetes/third_party/golang/go/printer,madhusudancs,1
k8s.io/kubernetes/third_party/golang/go/scanner,hurf,1
k8s.io/kubernetes/third_party/golang/go/token,mml,1
Kibana Logging Instances Is Alive should check that the Kibana logging instance is alive,swagiaal,0
kube-ui should check that the kube-ui instance is alive,fabioy,1
Kubectl client Guestbook application should create and stop a working application,pwittrock,0
Kubectl client Kubectl api-versions should check if v1 is in available api versions,pwittrock,0
Kubectl client Kubectl apply should apply a new configuration to an existing RC,pwittrock,0
Kubectl client Kubectl apply should reuse nodePort when apply to an existing SVC,pwittrock,0
Kubectl client Kubectl cluster-info should check if Kubernetes master services is included in cluster-info,pwittrock,0
Kubectl client Kubectl describe should check if kubectl describe prints relevant information for rc and pods,pwittrock,0
Kubectl client Kubectl expose should create services for rc,pwittrock,0
Kubectl client Kubectl label should update the label on a resource,pwittrock,0
Kubectl client Kubectl logs should be able to retrieve and filter logs,jlowdermilk,0
Kubectl client Kubectl patch should add annotations for pods in rc,janetkuo,0
Kubectl client Kubectl rolling-update should support rolling-update to same image,janetkuo,0
"Kubectl client Kubectl run --rm job should create a job from an image, then delete the job",soltysh,0
Kubectl client Kubectl run default should create an rc or deployment from an image,janetkuo,0
Kubectl client Kubectl run deployment should create a deployment from an image,janetkuo,0
Kubectl client Kubectl run job should create a job from an image when restart is Never,soltysh,0
Kubectl client Kubectl run job should create a job from an image when restart is OnFailure,soltysh,0
Kubectl client Kubectl run pod should create a pod from an image when restart is Never,janetkuo,0
Kubectl client Kubectl run pod should create a pod from an image when restart is OnFailure,janetkuo,0
Kubectl client Kubectl run rc should create an rc from an image,janetkuo,0
Kubectl client Kubectl taint should update the taint on a node,pwittrock,0
Kubectl client Kubectl version should check is all data is printed,janetkuo,0
Kubectl client Proxy server should support --unix-socket=/path,zmerlynn,1
Kubectl client Proxy server should support proxy with --port 0,ncdc,1
Kubectl client Simple pod should support exec,ncdc,0
Kubectl client Simple pod should support exec through an HTTP proxy,ncdc,0
Kubectl client Simple pod should support inline execution and attach,ncdc,0
Kubectl client Simple pod should support port-forward,ncdc,0
Kubectl client Update Demo should create and stop a replication controller,sttts,0
Kubectl client Update Demo should do a rolling update of a replication controller,sttts,0
Kubectl client Update Demo should scale a replication controller,sttts,0
kubelet Clean up pods on node kubelet should be able to delete 10 pods per node in 1m0s.,bgrant0607,1
Kubelet experimental resource usage tracking for 100 pods per node over 20m0s,yujuhong,0
Kubelet experimental resource usage tracking over 30m0s with 50 pods per node.,yujuhong,0
Kubelet experimental resource usage tracking resource tracking for 100 pods per node,ghodss,0
Kubelet regular resource usage tracking for 0 pods per node over 20m0s,yujuhong,0
Kubelet regular resource usage tracking for 100 pods per node over 20m0s,yujuhong,0
Kubelet regular resource usage tracking for 35 pods per node over 20m0s,yujuhong,0
Kubelet regular resource usage tracking over 30m0s with 0 pods per node.,yujuhong,0
Kubelet regular resource usage tracking over 30m0s with 35 pods per node.,yujuhong,0
Kubelet regular resource usage tracking resource tracking for 0 pods per node,pmorie,1
Kubelet regular resource usage tracking resource tracking for 100 pods per node,justinsb,1
Kubelet regular resource usage tracking resource tracking for 35 pods per node,madhusudancs,1
KubeletManagedEtcHosts should test kubelet managed /etc/hosts file,ArtfulCoder,1
KubeProxy should test kube-proxy,vulpecula,1
Kubernetes Dashboard should check that the kubernetes-dashboard instance is alive,wonderfly,0
LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied.,cjcullen,1
Liveness liveness pods should be automatically restarted,andyzheng0831,1
Load capacity should be able to handle 3 pods per node,gmarek,0
Load capacity should be able to handle 30 pods per node,wojtek-t,0
MasterCerts should have all expected certs on the master,apelisse,1
MaxPods Validates MaxPods limit number of pods that are allowed to run.,gmarek,0
Mesos applies slave attributes as labels,justinsb,1
Mesos schedules pods annotated with roles on correct slaves,timstclair,1
Mesos starts static pods on every node in the mesos cluster,lavalamp,1
MetricsGrabber should grab all metrics from a ControllerManager.,gmarek,0
MetricsGrabber should grab all metrics from a Kubelet.,gmarek,0
MetricsGrabber should grab all metrics from a Scheduler.,gmarek,0
MetricsGrabber should grab all metrics from API server.,gmarek,0
Monitoring should verify monitoring pods and all cluster nodes are available on influxdb using heapster.,piosz,0
Namespaces Delete 90 percent of 100 namespace in 150 seconds,caesarxuchao,1
Namespaces Delete ALL of 100 namespace in 150 seconds,luxas,1
Namespaces should always delete fast (ALL of 100 namespaces in 150 seconds),rmmh,1
Namespaces should delete fast enough (90 percent of 100 namespaces in 150 seconds),kevin-wangzefeng,1
Namespaces should ensure that all pods are removed when a namespace is deleted.,xiang90,1
Namespaces should ensure that all services are removed when a namespace is deleted.,pmorie,1
Networking Granular Checks should function for pod communication between nodes,freehan,0
Networking Granular Checks should function for pod communication on a single node,freehan,0
Networking IPerf should transfer ~ 1GB onto the service endpoint 1 servers (maximum of 1 clients),ghodss,1
Networking should function for intra-pod communication,sttts,0
Networking should provide Internet connection for containers,sttts,0
"Networking should provide unchanging, static URL paths for kubernetes api services",freehan,0
"Networking should provide unchanging, static URL paths for kubernetes api services.",ihmccreery,1
NodeOutOfDisk runs out of disk space,vishh,0
NodeProblemDetector KernelMonitor should generate node condition and events for corresponding errors ,Random-Liu,0
Nodes Network when a minion node becomes unreachable recreates pods scheduled on the unreachable minion node AND allows scheduling of pods on a minion after it rejoins the cluster,childsb,1
Nodes Network when a node becomes unreachable All pods on the unreachable node should be marked as NotReady upon the node turn NotReady AND all pods should be mark back to Ready when the node get back to Ready before pod eviction timeout,freehan,0
Nodes Network when a node becomes unreachable recreates pods scheduled on the unreachable node AND allows scheduling of pods on a node after it rejoins the cluster,madhusudancs,1
Nodes Resize should be able to add nodes,piosz,1
Nodes Resize should be able to delete nodes,zmerlynn,1
"PersistentVolumes NFS volume can be created, bound, retrieved, unbound, and used by a pod",jsafrane,0
persistentVolumes PersistentVolume,yifan-gu,1
Pet Store should scale to persist a nominal number ( 50 ) of transactions in 1m0s seconds,timstclair,1
PetSet provide basic identity,david-mcmahon,1
PetSet should handle healthy pet restarts during scale,ixdy,1
"Pod Disks should schedule a pod w/ a readonly PD on two hosts, then remove both.",saad-ali,0
"Pod Disks should schedule a pod w/ a RW PD shared between multiple containers, write to PD, delete pod, verify contents, and repeat in rapid succession",saad-ali,0
"Pod Disks should schedule a pod w/ a RW PD, remove it, then schedule it on another host",saad-ali,0
"Pod Disks should schedule a pod w/two RW PDs both mounted to one container, write to PD, verify contents, delete pod, recreate pod, verify contents, and repeat in rapid succession",saad-ali,0
Pods should *not* be restarted with a /healthz http liveness probe,cjcullen,1
"Pods should *not* be restarted with a docker exec ""cat /tmp/health"" liveness probe",vishh,0
Pods should allow activeDeadlineSeconds to be updated,derekwaynecarr,0
Pods should be restarted with a /healthz http liveness probe,girishkalele,1
"Pods should be restarted with a docker exec ""cat /tmp/health"" liveness probe",bgrant0607,1
Pods should be schedule with cpu and memory limits,vishh,0
Pods should be submitted and removed,wonderfly,1
Pods should be updated,derekwaynecarr,1
Pods should cap back-off at MaxContainerBackOff,maisem,1
Pods should contain environment variables for services,jlowdermilk,1
Pods should get a host IP,xiang90,1
Pods should have monotonically increasing restart count,Random-Liu,1
Pods should have their auto-restart back-off timer reset on image update,mikedanese,1
Pods should invoke init containers on a RestartAlways pod,cjcullen,1
Pods should invoke init containers on a RestartNever pod,justinsb,1
Pods should not start app containers and fail the pod if init containers fail on a RestartNever pod,maisem,0
Pods should not start app containers if init containers fail on a RestartAlways pod,david-mcmahon,1
Pods should support remote command execution over websockets,madhusudancs,1
Pods should support retrieving logs from the container over websockets,vishh,0
"Port forwarding With a server that expects a client request should support a client that connects, sends data, and disconnects",sttts,0
"Port forwarding With a server that expects a client request should support a client that connects, sends no data, and disconnects",sttts,0
"Port forwarding With a server that expects no client request should support a client that connects, sends no data, and disconnects",sttts,0
PreStop should call prestop when killing a pod,ncdc,1
PrivilegedPod should test privileged pod,vishh,0
Probing container with readiness probe should not be ready before initial delay and never restart,smarterclayton,1
Probing container with readiness probe that fails should never be ready and never restart,mtaufen,1
Proxy version v1 should proxy logs on node,girishkalele,1
Proxy version v1 should proxy logs on node using proxy subresource,karlkfi,1
Proxy version v1 should proxy logs on node with explicit kubelet port,mwielgus,1
Proxy version v1 should proxy logs on node with explicit kubelet port using proxy subresource,bgrant0607,1
Proxy version v1 should proxy through a service and a pod,mml,1
Proxy version v1 should proxy to cadvisor,Random-Liu,1
Proxy version v1 should proxy to cadvisor using proxy subresource,deads2k,1
Reboot each node by dropping all inbound packets for a while and ensure they function afterwards,quinton-hoole,0
Reboot each node by dropping all outbound packets for a while and ensure they function afterwards,quinton-hoole,0
Reboot each node by ordering clean reboot and ensure they function upon restart,quinton-hoole,0
Reboot each node by ordering unclean reboot and ensure they function upon restart,quinton-hoole,0
Reboot each node by switching off the network interface and ensure they function upon switch on,quinton-hoole,0
Reboot each node by triggering kernel panic and ensure they function upon restart,quinton-hoole,0
Redis should create and stop redis servers,timstclair,1
ReplicaSet should serve a basic image on each replica with a private image,pmorie,1
ReplicaSet should serve a basic image on each replica with a public image,krousey,0
ReplicationController should serve a basic image on each replica with a private image,jbeda,1
ReplicationController should serve a basic image on each replica with a public image,a-robinson,1
Resource usage of system containers should not exceed expected amount.,ncdc,1
ResourceQuota should create a ResourceQuota and capture the life of a configMap.,mhrgoog,1
ResourceQuota should create a ResourceQuota and capture the life of a loadBalancer service.,ncdc,1
ResourceQuota should create a ResourceQuota and capture the life of a nodePort service updated to clusterIP.,ghodss,1
ResourceQuota should create a ResourceQuota and capture the life of a nodePort service updated to loadBalancer.,jdef,1
ResourceQuota should create a ResourceQuota and capture the life of a nodePort service.,thockin,1
ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim.,bgrant0607,1
ResourceQuota should create a ResourceQuota and capture the life of a pod.,pmorie,1
ResourceQuota should create a ResourceQuota and capture the life of a replication controller.,ihmccreery,1
ResourceQuota should create a ResourceQuota and capture the life of a secret.,ncdc,1
ResourceQuota should create a ResourceQuota and capture the life of a service.,timstclair,1
ResourceQuota should create a ResourceQuota and ensure its status is promptly calculated.,krousey,1
ResourceQuota should verify ResourceQuota with best effort scope.,mml,1
ResourceQuota should verify ResourceQuota with terminating scopes.,ncdc,1
Restart should restart all nodes and ensure all nodes and pods recover,andyzheng0831,1
RethinkDB should create and stop rethinkdb servers,kargakis,1
"Scale should be able to launch 500 pods, 10 per minion, in 25 rcs/thread.",wonderfly,1
"Scale should be able to launch 500 pods, 10 per minion, in 5 rcs/thread.",bgrant0607,1
SchedulerPredicates validates MaxPods limit number of pods that are allowed to run,gmarek,0
SchedulerPredicates validates resource limits of pods that are allowed to run,gmarek,0
SchedulerPredicates validates that a pod with an invalid NodeAffinity is rejected,deads2k,1
SchedulerPredicates validates that a pod with an invalid podAffinity is rejected because of the LabelSelectorRequirement is invalid,smarterclayton,1
SchedulerPredicates validates that embedding the JSON NodeAffinity setting as a string in the annotation value work,yifan-gu,1
SchedulerPredicates validates that embedding the JSON PodAffinity and PodAntiAffinity setting as a string in the annotation value work,hurf,1
SchedulerPredicates validates that Inter-pod-Affinity is respected if not matching,hurf,1
SchedulerPredicates validates that InterPod Affinity and AntiAffinity is respected if matching,girishkalele,1
SchedulerPredicates validates that InterPodAffinity is respected if matching,kevin-wangzefeng,1
SchedulerPredicates validates that InterPodAffinity is respected if matching with multiple Affinities,caesarxuchao,1
SchedulerPredicates validates that InterPodAntiAffinity is respected if matching 2,sttts,0
SchedulerPredicates validates that NodeAffinity is respected if not matching,fgrzadkowski,0
SchedulerPredicates validates that NodeSelector is respected,fgrzadkowski,0
SchedulerPredicates validates that NodeSelector is respected if matching,gmarek,0
SchedulerPredicates validates that NodeSelector is respected if not matching,gmarek,0
SchedulerPredicates validates that required NodeAffinity setting is respected if matching,ArtfulCoder,1
SchedulerPredicates validates that taints-tolerations is respected if matching,jlowdermilk,1
SchedulerPredicates validates that taints-tolerations is respected if not matching,derekwaynecarr,1
Secret should create a pod that reads a secret,luxas,1
Secrets should be consumable from pods,Random-Liu,1
Secrets should be consumable from pods in env vars,ArtfulCoder,1
Secrets should be consumable from pods in volume,ghodss,1
Security Context should support container.SecurityContext.RunAsUser,alex-mohr,1
Security Context should support pod.Spec.SecurityContext.RunAsUser,bgrant0607,1
Security Context should support pod.Spec.SecurityContext.SupplementalGroups,andyzheng0831,1
Security Context should support volume SELinux relabeling,wonderfly,1
Security Context should support volume SELinux relabeling when using hostIPC,alex-mohr,1
Security Context should support volume SELinux relabeling when using hostPID,dchen1107,1
Service endpoints latency should not be very high,cjcullen,1
ServiceAccounts should ensure a single API token exists,liggitt,0
ServiceAccounts should mount an API token into pods,liggitt,0
ServiceLoadBalancer should support simple GET on Ingress ips,bprashanth,0
Services should be able to change the type and nodeport settings of a service,bprashanth,0
Services should be able to change the type and ports of a service,bprashanth,0
Services should be able to create a functioning external load balancer,bprashanth,0
Services should be able to create a functioning NodePort service,bprashanth,0
Services should be able to up and down services,bprashanth,0
Services should check NodePort out-of-range,bprashanth,0
Services should correctly serve identically named services in different namespaces on different external IP addresses,bprashanth,0
Services should create endpoints for unready pods,maisem,0
Services should prevent NodePort collisions,bprashanth,0
Services should provide secure master service,bprashanth,0
Services should release NodePorts on delete,bprashanth,0
Services should release the load balancer when Type goes from LoadBalancer -> NodePort,karlkfi,1
Services should serve a basic endpoint from pods,bprashanth,0
Services should serve identically named services in different namespaces on different load-balancers,davidopp,1
Services should serve multiport endpoints from pods,bprashanth,0
Services should work after restarting apiserver,bprashanth,0
Services should work after restarting kube-proxy,bprashanth,0
Shell should pass tests for services.sh,mtaufen,1
Skipped Cluster upgrade kube-push of master should maintain responsive services,a-robinson,1
Skipped Cluster upgrade upgrade-cluster should maintain a functioning cluster,smarterclayton,1
Skipped Cluster upgrade upgrade-master should maintain responsive services,vulpecula,1
"Spark should start spark master, driver and workers",girishkalele,1
SSH should SSH to all nodes and run commands,quinton-hoole,0
"Storm should create and stop Zookeeper, Nimbus and Storm worker servers",swagiaal,1
ThirdParty resources Simple Third Party creating/deleting thirdparty objects works,luxas,1
Ubernetes Lite should spread the pods of a replication controller across zones,quinton-hoole,0
Ubernetes Lite should spread the pods of a service across zones,quinton-hoole,0
Upgrade cluster upgrade should maintain a functioning cluster,girishkalele,1
Upgrade cluster upgrade should maintain responsive services,david-mcmahon,1
Upgrade master upgrade should maintain responsive services,mikedanese,1
Upgrade node upgrade should maintain a functioning cluster,zmerlynn,1
Upgrade node upgrade should maintain responsive services,childsb,1
V1Job should delete a job,soltysh,0
V1Job should fail a job,soltysh,0
V1Job should keep restarting failed pods,soltysh,0
V1Job should run a job to completion when tasks sometimes fail and are locally restarted,soltysh,0
V1Job should run a job to completion when tasks sometimes fail and are not locally restarted,soltysh,0
V1Job should run a job to completion when tasks succeed,soltysh,0
V1Job should scale a job down,soltysh,0
V1Job should scale a job up,soltysh,0
Variable Expansion should allow composing env vars into new env vars,ghodss,1
Variable Expansion should allow substituting values in a container's args,dchen1107,1
Variable Expansion should allow substituting values in a container's command,mml,1
Volumes Ceph RBD should be mountable,fabioy,1
Volumes CephFS should be mountable,Q-Lee,1
Volumes Cinder should be mountable,cjcullen,1
Volumes GlusterFS should be mountable,eparis,1
Volumes iSCSI should be mountable,david-mcmahon,1
Volumes NFS should be mountable,andyzheng0831,1
Volumes PD should be mountable,caesarxuchao,1
1 test name owner auto-assigned
2 Addon update should propagate add-on file changes eparis 1
3 Autoscaling should scale cluster size based on cpu reservation davidopp 1
4 Autoscaling should scale cluster size based on cpu utilization thockin 1
5 Autoscaling should scale cluster size based on memory reservation hurf 1
6 Autoscaling should scale cluster size based on memory utilization davidopp 1
7 BeforeSuite ixdy 0
8 Cadvisor should be healthy on every node. vishh 0
9 Cassandra should create and scale cassandra fabioy 1
10 Celery-RabbitMQ should create and stop celery+rabbitmq servers luxas 1
11 Clean up pods on node kubelet should be able to delete 10 pods per node in 1m0s. lavalamp 1
12 Cluster level logging using Elasticsearch should check that logs from pods on all nodes are ingested into Elasticsearch david-mcmahon 1
13 Cluster size autoscaling Should correctly handle pending pods jszczepkowski 0
14 Cluster size autoscaling Should scale cluster size based on cpu reservation dchen1107 1
15 Cluster size autoscaling Should scale cluster size based on cpu utilization a-robinson 1
16 Cluster size autoscaling Should scale cluster size based on memory reservation ghodss 1
17 Cluster size autoscaling Should scale cluster size based on memory utilization childsb 1
18 ClusterDns should create pod that uses dns sttts 0
19 ConfigMap should be consumable from pods in volume alex-mohr 1
20 ConfigMap should be consumable from pods in volume as non-root ArtfulCoder 1
21 ConfigMap should be consumable from pods in volume as non-root with FSGroup roberthbailey 1
22 ConfigMap should be consumable from pods in volume with mappings karlkfi 1
23 ConfigMap should be consumable from pods in volume with mappings as non-root apelisse 1
24 ConfigMap should be consumable from pods in volume with mappings as non-root with FSGroup zmerlynn 1
25 ConfigMap should be consumable via environment variable a-robinson 1
26 ConfigMap updates should be reflected in volume kevin-wangzefeng 1
27 Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should be able to pull image from gcr.io Random-Liu 0
28 Daemon set should launch a daemon pod on every node of the cluster andyzheng0831 1
29 Daemon set should run and stop complex daemon ArtfulCoder 1
30 Daemon set should run and stop simple daemon mtaufen 1
31 DaemonRestart Controller Manager should not create/delete replicas across restart vulpecula 1
32 DaemonRestart Kubelet should not restart containers across restart madhusudancs 1
33 DaemonRestart Scheduler should continue assigning pods to nodes across restart lavalamp 1
34 Density should allow starting 100 pods per node wojtek-t 0
35 Density should allow starting 3 pods per node gmarek 0
36 Density should allow starting 30 pods per node gmarek 0
37 Density should allow starting 50 pods per node wojtek-t 0
38 Density should allow starting 95 pods per node wojtek-t 0
39 Deployment deployment should create new pods pwittrock 0
40 Deployment deployment should delete old pods and create new ones nikhiljindal 0
41 Deployment deployment should delete old replica sets pwittrock 0
42 Deployment deployment should label adopted RSs and pods pwittrock 0
43 Deployment deployment should scale up and down in the right order pwittrock 0
44 Deployment deployment should support rollback pwittrock 0
45 Deployment deployment should support rollback when there's replica set with no revision pwittrock 0
46 Deployment deployment should support rollover pwittrock 0
47 Deployment paused deployment should be ignored by the controller kargakis 0
48 Deployment RecreateDeployment should delete old pods and create new ones pwittrock 0
49 Deployment RollingUpdateDeployment should delete old pods and create new ones pwittrock 0
50 Deployment RollingUpdateDeployment should scale up and down in the right order pwittrock 0
51 DNS should provide DNS for pods for Hostname and Subdomain Annotation mtaufen 1
52 DNS should provide DNS for services roberthbailey 1
53 DNS should provide DNS for the cluster roberthbailey 1
54 Docker Containers should be able to override the image's default arguments (docker cmd) maisem 0
55 Docker Containers should be able to override the image's default command and arguments maisem 0
56 Docker Containers should be able to override the image's default commmand (docker entrypoint) maisem 0
57 Docker Containers should use the image defaults if command and args are blank vishh 0
58 Downward API should create a pod that prints his name and namespace nhlfr 0
59 Downward API should provide default limits.cpu/memory from node capacity derekwaynecarr 0
60 Downward API should provide pod IP as an env var nhlfr 0
61 Downward API should provide pod name and namespace as env vars nhlfr 0
62 Downward API volume should provide labels and annotations files nhlfr 0
63 Downward API volume should provide podname as non-root with fsgroup karlkfi 1
64 Downward API volume should provide podname only mwielgus 1
65 Downward API volume should update annotations on modification eparis 1
66 Downward API volume should update labels on modification timothysc 1
67 Dynamic provisioning DynamicProvisioner should create and delete persistent volumes jsafrane 0
68 EmptyDir volumes should have the correct mode mikedanese 1
69 EmptyDir volumes should support (non-root,0644,default) timstclair 1
70 EmptyDir volumes should support (non-root,0644,tmpfs) spxtr 1
71 EmptyDir volumes should support (non-root,0666,default) dchen1107 1
72 EmptyDir volumes should support (non-root,0666,tmpfs) apelisse 1
73 EmptyDir volumes should support (non-root,0777,default) mwielgus 1
74 EmptyDir volumes should support (non-root,0777,tmpfs) smarterclayton 1
75 EmptyDir volumes should support (root,0644,default) mtaufen 1
76 EmptyDir volumes should support (root,0644,tmpfs) madhusudancs 1
77 EmptyDir volumes should support (root,0666,default) brendandburns 1
78 EmptyDir volumes should support (root,0666,tmpfs) davidopp 1
79 EmptyDir volumes should support (root,0777,default) spxtr 1
80 EmptyDir volumes should support (root,0777,tmpfs) alex-mohr 1
81 EmptyDir volumes should support r/w davidopp 1
82 EmptyDir volumes volume on default medium should have the correct mode girishkalele 1
83 EmptyDir volumes volume on tmpfs should have the correct mode mwielgus 1
84 EmptyDir volumes when FSGroup is specified new files should be created with FSGroup ownership when container is non-root brendandburns 1
85 EmptyDir volumes when FSGroup is specified new files should be created with FSGroup ownership when container is root childsb 1
86 EmptyDir volumes when FSGroup is specified volume on default medium should have the correct mode using FSGroup ArtfulCoder 1
87 EmptyDir volumes when FSGroup is specified volume on tmpfs should have the correct mode using FSGroup timothysc 1
88 EmptyDir wrapper volumes should becomes running deads2k 1
89 Etcd failure should recover from network partition with master justinsb 1
90 Etcd failure should recover from SIGKILL pmorie 1
91 Events should be sent by kubelets and the scheduler about pods scheduling and running zmerlynn 1
92 Examples e2e Cassandra should create and scale cassandra bgrant0607 1
93 Examples e2e Celery-RabbitMQ should create and stop celery+rabbitmq servers apelisse 1
94 Examples e2e ClusterDns should create pod that uses dns kargakis 1
95 Examples e2e Downward API should create a pod that prints his name and namespace roberthbailey 1
96 Examples e2e Hazelcast should create and scale hazelcast a-robinson 1
97 Examples e2e Liveness liveness pods should be automatically restarted lavalamp 1
98 Examples e2e Redis should create and stop redis servers spxtr 1
99 Examples e2e RethinkDB should create and stop rethinkdb servers andyzheng0831 1
100 Examples e2e Secret should create a pod that reads a secret alex-mohr 1
101 Examples e2e Spark should start spark master, driver and workers maisem 1
102 Examples e2e Storm should create and stop Zookeeper, Nimbus and Storm worker servers mwielgus 1
103 Federated Services DNS non-local federated service missing local service should never find DNS entries for a missing local service mml 0
104 Garbage collector should handle the creation of 1000 pods wonderfly 1
105 GCE L7 LoadBalancer Controller should create GCE L7 loadbalancers and verify Ingress bprashanth 0
106 Generated release_1_2 clientset should create pods, delete pods, watch pods ncdc 1
107 Generated release_1_3 clientset should create pods, delete pods, watch pods krousey 1
108 GKE local SSD should write and read from node local SSD fabioy 0
109 Hazelcast should create and scale hazelcast mikedanese 1
110 Horizontal pod autoscaling (scale resource: CPU) Deployment Should scale from 1 pod to 3 pods and from 3 to 5 and verify decision stability jszczepkowski 0
111 Horizontal pod autoscaling (scale resource: CPU) Deployment Should scale from 5 pods to 3 pods and from 3 to 1 and verify decision stability jszczepkowski 0
112 Horizontal pod autoscaling (scale resource: CPU) ReplicaSet Should scale from 1 pod to 3 pods and from 3 to 5 and verify decision stability jszczepkowski 0
113 Horizontal pod autoscaling (scale resource: CPU) ReplicaSet Should scale from 5 pods to 3 pods and from 3 to 1 and verify decision stability jszczepkowski 0
114 Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 1 pod to 2 pods jszczepkowski 0
115 Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 2 pods to 1 pod jszczepkowski 0
116 Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 2 pods to 1 pod using HPA version v1 jszczepkowski 0
117 Horizontal pod autoscaling (scale resource: CPU) ReplicationController Should scale from 1 pod to 3 pods and from 3 to 5 and verify decision stability jszczepkowski 0
118 Horizontal pod autoscaling (scale resource: CPU) ReplicationController Should scale from 5 pods to 3 pods and from 3 to 1 and verify decision stability jszczepkowski 0
119 Horizontal pod autoscaling should scale from 1 pod to 3 pods and from 3 to 5 (scale resource: CPU) jszczepkowski 0
120 Horizontal pod autoscaling should scale from 5 pods to 3 pods and from 3 to 1 (scale resource: CPU) jszczepkowski 0
121 hostDir should give a volume the correct mode bgrant0607 1
122 hostDir should support r/w on tmpfs erictune 0
123 hostPath should give a volume the correct mode roberthbailey 1
124 hostPath should support r/w roberthbailey 1
125 hostPath should support subPath krousey 1
126 Initial Resources should set initial resources based on historical data piosz 0
127 Job should delete a job soltysh 0
128 Job should fail a job soltysh 0
129 Job should keep restarting failed pods soltysh 0
130 Job should run a job to completion when tasks sometimes fail and are locally restarted soltysh 0
131 Job should run a job to completion when tasks sometimes fail and are not locally restarted soltysh 0
132 Job should run a job to completion when tasks succeed soltysh 0
133 Job should scale a job down soltysh 0
134 Job should scale a job up soltysh 0
135 Job should stop a job soltysh 0
136 k8s.io/kubernetes/cluster/addons/dns/kube2sky zmerlynn 1
137 k8s.io/kubernetes/cmd/genutils rmmh 1
138 k8s.io/kubernetes/cmd/hyperkube jbeda 0
139 k8s.io/kubernetes/cmd/kube-apiserver/app nikhiljindal 0
140 k8s.io/kubernetes/cmd/kube-apiserver/app/options nikhiljindal 0
141 k8s.io/kubernetes/cmd/kube-proxy/app luxas 1
142 k8s.io/kubernetes/cmd/kubelet/app hurf 1
143 k8s.io/kubernetes/cmd/kubernetes-discovery/discoverysummarizer thockin 1
144 k8s.io/kubernetes/cmd/libs/go2idl/client-gen/testoutput/clientset_generated/test_internalclientset Random-Liu 1
145 k8s.io/kubernetes/cmd/libs/go2idl/client-gen/testoutput/clientset_generated/test_internalclientset/typed/testgroup.k8s.io/unversioned eparis 1
146 k8s.io/kubernetes/cmd/libs/go2idl/client-gen/testoutput/testgroup/unversioned ArtfulCoder 1
147 k8s.io/kubernetes/cmd/libs/go2idl/generator ixdy 1
148 k8s.io/kubernetes/cmd/libs/go2idl/import-boss/generators kevin-wangzefeng 1
149 k8s.io/kubernetes/cmd/libs/go2idl/namer luxas 1
150 k8s.io/kubernetes/cmd/libs/go2idl/parser lavalamp 1
151 k8s.io/kubernetes/cmd/libs/go2idl/types mikedanese 1
152 k8s.io/kubernetes/cmd/mungedocs mwielgus 1
153 k8s.io/kubernetes/contrib/mesos/cmd/km brendandburns 1
154 k8s.io/kubernetes/contrib/mesos/pkg/archive kargakis 1
155 k8s.io/kubernetes/contrib/mesos/pkg/election vulpecula 1
156 k8s.io/kubernetes/contrib/mesos/pkg/executor mhrgoog 1
157 k8s.io/kubernetes/contrib/mesos/pkg/minion/tasks hurf 1
158 k8s.io/kubernetes/contrib/mesos/pkg/node jdef 1
159 k8s.io/kubernetes/contrib/mesos/pkg/offers david-mcmahon 1
160 k8s.io/kubernetes/contrib/mesos/pkg/podutil Q-Lee 1
161 k8s.io/kubernetes/contrib/mesos/pkg/proc apelisse 1
162 k8s.io/kubernetes/contrib/mesos/pkg/queue caesarxuchao 1
163 k8s.io/kubernetes/contrib/mesos/pkg/redirfd cjcullen 1
164 k8s.io/kubernetes/contrib/mesos/pkg/runtime davidopp 1
165 k8s.io/kubernetes/contrib/mesos/pkg/scheduler jbeda 1
166 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/deleter karlkfi 1
167 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/components/framework kevin-wangzefeng 1
168 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/config dchen1107 1
169 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/constraint dchen1107 1
170 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/executorinfo luxas 1
171 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/integration yifan-gu 1
172 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask mhrgoog 1
173 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask/hostport mml 1
174 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/resources ixdy 1
175 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/service madhusudancs 1
176 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/slave rmmh 1
177 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/uid jlowdermilk 1
178 k8s.io/kubernetes/contrib/mesos/pkg/service jdef 1
179 k8s.io/kubernetes/examples Random-Liu 0
180 k8s.io/kubernetes/examples/apiserver nikhiljindal 0
181 k8s.io/kubernetes/federation/apis/federation/install nikhiljindal 0
182 k8s.io/kubernetes/federation/apis/federation/validation nikhiljindal 0
183 k8s.io/kubernetes/federation/cmd/federated-apiserver/app nikhiljindal 0
184 k8s.io/kubernetes/federation/pkg/federation-controller/cluster nikhiljindal 0
185 k8s.io/kubernetes/federation/registry/cluster nikhiljindal 0
186 k8s.io/kubernetes/federation/registry/cluster/etcd nikhiljindal 0
187 k8s.io/kubernetes/hack/cmd/teststale mhrgoog 1
188 k8s.io/kubernetes/pkg/admission dchen1107 1
189 k8s.io/kubernetes/pkg/api Q-Lee 1
190 k8s.io/kubernetes/pkg/api/endpoints swagiaal 1
191 k8s.io/kubernetes/pkg/api/errors yifan-gu 1
192 k8s.io/kubernetes/pkg/api/install timothysc 1
193 k8s.io/kubernetes/pkg/api/latest ixdy 1
194 k8s.io/kubernetes/pkg/api/meta fabioy 1
195 k8s.io/kubernetes/pkg/api/pod piosz 1
196 k8s.io/kubernetes/pkg/api/resource smarterclayton 1
197 k8s.io/kubernetes/pkg/api/rest ixdy 1
198 k8s.io/kubernetes/pkg/api/service spxtr 1
199 k8s.io/kubernetes/pkg/api/testapi wonderfly 1
200 k8s.io/kubernetes/pkg/api/unversioned kevin-wangzefeng 1
201 k8s.io/kubernetes/pkg/api/unversioned/validation brendandburns 1
202 k8s.io/kubernetes/pkg/api/util ghodss 1
203 k8s.io/kubernetes/pkg/api/v1 vulpecula 1
204 k8s.io/kubernetes/pkg/api/validation smarterclayton 1
205 k8s.io/kubernetes/pkg/apimachinery/registered jlowdermilk 1
206 k8s.io/kubernetes/pkg/apis/abac/v0 liggitt 0
207 k8s.io/kubernetes/pkg/apis/apps/validation derekwaynecarr 1
208 k8s.io/kubernetes/pkg/apis/authorization/validation erictune 0
209 k8s.io/kubernetes/pkg/apis/autoscaling/validation Random-Liu 1
210 k8s.io/kubernetes/pkg/apis/batch/validation erictune 0
211 k8s.io/kubernetes/pkg/apis/componentconfig jbeda 1
212 k8s.io/kubernetes/pkg/apis/componentconfig/install pmorie 1
213 k8s.io/kubernetes/pkg/apis/extensions jbeda 1
214 k8s.io/kubernetes/pkg/apis/extensions/install thockin 1
215 k8s.io/kubernetes/pkg/apis/extensions/v1beta1 madhusudancs 1
216 k8s.io/kubernetes/pkg/apis/extensions/validation Random-Liu 1
217 k8s.io/kubernetes/pkg/apis/policy/validation deads2k 1
218 k8s.io/kubernetes/pkg/apis/rbac/validation erictune 0
219 k8s.io/kubernetes/pkg/apiserver nikhiljindal 0
220 k8s.io/kubernetes/pkg/auth/authenticator/bearertoken liggitt 0
221 k8s.io/kubernetes/pkg/auth/authorizer/abac liggitt 0
222 k8s.io/kubernetes/pkg/auth/authorizer/union liggitt 0
223 k8s.io/kubernetes/pkg/auth/handlers liggitt 0
224 k8s.io/kubernetes/pkg/client/cache xiang90 1
225 k8s.io/kubernetes/pkg/client/chaosclient a-robinson 1
226 k8s.io/kubernetes/pkg/client/leaderelection xiang90 1
227 k8s.io/kubernetes/pkg/client/record karlkfi 1
228 k8s.io/kubernetes/pkg/client/restclient kargakis 1
229 k8s.io/kubernetes/pkg/client/transport eparis 1
230 k8s.io/kubernetes/pkg/client/typed/discovery ihmccreery 1
231 k8s.io/kubernetes/pkg/client/typed/dynamic luxas 1
232 k8s.io/kubernetes/pkg/client/unversioned justinsb 1
233 k8s.io/kubernetes/pkg/client/unversioned/auth swagiaal 1
234 k8s.io/kubernetes/pkg/client/unversioned/clientcmd yifan-gu 1
235 k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api mhrgoog 1
236 k8s.io/kubernetes/pkg/client/unversioned/portforward lavalamp 1
237 k8s.io/kubernetes/pkg/client/unversioned/remotecommand andyzheng0831 1
238 k8s.io/kubernetes/pkg/client/unversioned/testclient brendandburns 1
239 k8s.io/kubernetes/pkg/cloudprovider/providers/aws eparis 1
240 k8s.io/kubernetes/pkg/cloudprovider/providers/gce yifan-gu 1
241 k8s.io/kubernetes/pkg/cloudprovider/providers/mesos mml 1
242 k8s.io/kubernetes/pkg/cloudprovider/providers/openstack Q-Lee 1
243 k8s.io/kubernetes/pkg/cloudprovider/providers/ovirt girishkalele 1
244 k8s.io/kubernetes/pkg/cloudprovider/providers/rackspace caesarxuchao 1
245 k8s.io/kubernetes/pkg/cloudprovider/providers/vagrant caesarxuchao 1
246 k8s.io/kubernetes/pkg/cloudprovider/providers/vsphere apelisse 1
247 k8s.io/kubernetes/pkg/controller mikedanese 1
248 k8s.io/kubernetes/pkg/controller/daemon Q-Lee 1
249 k8s.io/kubernetes/pkg/controller/deployment asalkeld 0
250 k8s.io/kubernetes/pkg/controller/endpoint Random-Liu 1
251 k8s.io/kubernetes/pkg/controller/framework mhrgoog 1
252 k8s.io/kubernetes/pkg/controller/garbagecollector rmmh 1
253 k8s.io/kubernetes/pkg/controller/gc jdef 1
254 k8s.io/kubernetes/pkg/controller/job soltysh 0
255 k8s.io/kubernetes/pkg/controller/namespace ihmccreery 1
256 k8s.io/kubernetes/pkg/controller/node gmarek 0
257 k8s.io/kubernetes/pkg/controller/persistentvolume jsafrane 0
258 k8s.io/kubernetes/pkg/controller/petset david-mcmahon 1
259 k8s.io/kubernetes/pkg/controller/podautoscaler piosz 0
260 k8s.io/kubernetes/pkg/controller/podautoscaler/metrics piosz 0
261 k8s.io/kubernetes/pkg/controller/replicaset fgrzadkowski 0
262 k8s.io/kubernetes/pkg/controller/replication fgrzadkowski 0
263 k8s.io/kubernetes/pkg/controller/resourcequota ghodss 1
264 k8s.io/kubernetes/pkg/controller/route gmarek 0
265 k8s.io/kubernetes/pkg/controller/service asalkeld 0
266 k8s.io/kubernetes/pkg/controller/serviceaccount liggitt 0
267 k8s.io/kubernetes/pkg/controller/volume/cache saad-ali 0
268 k8s.io/kubernetes/pkg/conversion swagiaal 1
269 k8s.io/kubernetes/pkg/conversion/queryparams caesarxuchao 1
270 k8s.io/kubernetes/pkg/credentialprovider justinsb 1
271 k8s.io/kubernetes/pkg/credentialprovider/aws zmerlynn 1
272 k8s.io/kubernetes/pkg/credentialprovider/gcp mml 1
273 k8s.io/kubernetes/pkg/dns jdef 1
274 k8s.io/kubernetes/pkg/fieldpath childsb 1
275 k8s.io/kubernetes/pkg/fields jsafrane 1
276 k8s.io/kubernetes/pkg/genericapiserver nikhiljindal 0
277 k8s.io/kubernetes/pkg/healthz thockin 1
278 k8s.io/kubernetes/pkg/httplog mtaufen 1
279 k8s.io/kubernetes/pkg/kubectl ihmccreery 1
280 k8s.io/kubernetes/pkg/kubectl/cmd wonderfly 1
281 k8s.io/kubernetes/pkg/kubectl/cmd/config asalkeld 0
282 k8s.io/kubernetes/pkg/kubectl/cmd/util asalkeld 0
283 k8s.io/kubernetes/pkg/kubectl/cmd/util/editor jdef 1
284 k8s.io/kubernetes/pkg/kubectl/cmd/util/jsonmerge Q-Lee 1
285 k8s.io/kubernetes/pkg/kubectl/resource caesarxuchao 1
286 k8s.io/kubernetes/pkg/kubelet vishh 0
287 k8s.io/kubernetes/pkg/kubelet/client timstclair 1
288 k8s.io/kubernetes/pkg/kubelet/cm vishh 0
289 k8s.io/kubernetes/pkg/kubelet/config mikedanese 1
290 k8s.io/kubernetes/pkg/kubelet/container yujuhong 0
291 k8s.io/kubernetes/pkg/kubelet/custommetrics kevin-wangzefeng 0
292 k8s.io/kubernetes/pkg/kubelet/dockertools deads2k 1
293 k8s.io/kubernetes/pkg/kubelet/envvars karlkfi 1
294 k8s.io/kubernetes/pkg/kubelet/eviction childsb 1
295 k8s.io/kubernetes/pkg/kubelet/lifecycle david-mcmahon 1
296 k8s.io/kubernetes/pkg/kubelet/network freehan 0
297 k8s.io/kubernetes/pkg/kubelet/network/cni freehan 0
298 k8s.io/kubernetes/pkg/kubelet/network/exec freehan 0
299 k8s.io/kubernetes/pkg/kubelet/network/hairpin freehan 0
300 k8s.io/kubernetes/pkg/kubelet/network/kubenet freehan 0
301 k8s.io/kubernetes/pkg/kubelet/pleg yujuhong 0
302 k8s.io/kubernetes/pkg/kubelet/pod alex-mohr 1
303 k8s.io/kubernetes/pkg/kubelet/prober alex-mohr 1
304 k8s.io/kubernetes/pkg/kubelet/prober/results krousey 1
305 k8s.io/kubernetes/pkg/kubelet/qos vishh 0
306 k8s.io/kubernetes/pkg/kubelet/qos/util vishh 0
307 k8s.io/kubernetes/pkg/kubelet/rkt apelisse 1
308 k8s.io/kubernetes/pkg/kubelet/server timstclair 0
309 k8s.io/kubernetes/pkg/kubelet/server/stats timstclair 0
310 k8s.io/kubernetes/pkg/kubelet/status mwielgus 1
311 k8s.io/kubernetes/pkg/kubelet/types jlowdermilk 1
312 k8s.io/kubernetes/pkg/kubelet/util/cache timothysc 1
313 k8s.io/kubernetes/pkg/kubelet/util/format a-robinson 1
314 k8s.io/kubernetes/pkg/kubelet/util/queue yujuhong 0
315 k8s.io/kubernetes/pkg/labels ixdy 1
316 k8s.io/kubernetes/pkg/master fabioy 1
317 k8s.io/kubernetes/pkg/probe/exec bgrant0607 1
318 k8s.io/kubernetes/pkg/probe/http david-mcmahon 1
319 k8s.io/kubernetes/pkg/probe/tcp mtaufen 1
320 k8s.io/kubernetes/pkg/proxy/config wonderfly 1
321 k8s.io/kubernetes/pkg/proxy/iptables freehan 0
322 k8s.io/kubernetes/pkg/proxy/userspace luxas 1
323 k8s.io/kubernetes/pkg/quota ihmccreery 1
324 k8s.io/kubernetes/pkg/registry/componentstatus yifan-gu 1
325 k8s.io/kubernetes/pkg/registry/configmap timothysc 1
326 k8s.io/kubernetes/pkg/registry/configmap/etcd ihmccreery 1
327 k8s.io/kubernetes/pkg/registry/controller jdef 1
328 k8s.io/kubernetes/pkg/registry/controller/etcd spxtr 1
329 k8s.io/kubernetes/pkg/registry/daemonset a-robinson 1
330 k8s.io/kubernetes/pkg/registry/daemonset/etcd pmorie 1
331 k8s.io/kubernetes/pkg/registry/deployment timothysc 1
332 k8s.io/kubernetes/pkg/registry/deployment/etcd ihmccreery 1
333 k8s.io/kubernetes/pkg/registry/endpoint smarterclayton 1
334 k8s.io/kubernetes/pkg/registry/endpoint/etcd a-robinson 1
335 k8s.io/kubernetes/pkg/registry/event girishkalele 1
336 k8s.io/kubernetes/pkg/registry/event/etcd karlkfi 1
337 k8s.io/kubernetes/pkg/registry/experimental/controller/etcd smarterclayton 1
338 k8s.io/kubernetes/pkg/registry/generic eparis 1
339 k8s.io/kubernetes/pkg/registry/generic/etcd fabioy 1
340 k8s.io/kubernetes/pkg/registry/generic/registry jsafrane 1
341 k8s.io/kubernetes/pkg/registry/generic/rest smarterclayton 1
342 k8s.io/kubernetes/pkg/registry/horizontalpodautoscaler jszczepkowski 0
343 k8s.io/kubernetes/pkg/registry/horizontalpodautoscaler/etcd jszczepkowski 0
344 k8s.io/kubernetes/pkg/registry/ingress jsafrane 1
345 k8s.io/kubernetes/pkg/registry/ingress/etcd vulpecula 1
346 k8s.io/kubernetes/pkg/registry/job soltysh 0
347 k8s.io/kubernetes/pkg/registry/job/etcd soltysh 0
348 k8s.io/kubernetes/pkg/registry/limitrange apelisse 1
349 k8s.io/kubernetes/pkg/registry/limitrange/etcd zmerlynn 1
350 k8s.io/kubernetes/pkg/registry/namespace roberthbailey 1
351 k8s.io/kubernetes/pkg/registry/namespace/etcd justinsb 1
352 k8s.io/kubernetes/pkg/registry/node krousey 1
353 k8s.io/kubernetes/pkg/registry/node/etcd kevin-wangzefeng 1
354 k8s.io/kubernetes/pkg/registry/persistentvolume kevin-wangzefeng 1
355 k8s.io/kubernetes/pkg/registry/persistentvolume/etcd andyzheng0831 1
356 k8s.io/kubernetes/pkg/registry/persistentvolumeclaim bgrant0607 1
357 k8s.io/kubernetes/pkg/registry/persistentvolumeclaim/etcd deads2k 1
358 k8s.io/kubernetes/pkg/registry/petset rmmh 1
359 k8s.io/kubernetes/pkg/registry/petset/etcd dchen1107 1
360 k8s.io/kubernetes/pkg/registry/pod alex-mohr 1
361 k8s.io/kubernetes/pkg/registry/pod/etcd justinsb 1
362 k8s.io/kubernetes/pkg/registry/pod/rest childsb 1
363 k8s.io/kubernetes/pkg/registry/poddisruptionbudget jsafrane 1
364 k8s.io/kubernetes/pkg/registry/poddisruptionbudget/etcd alex-mohr 1
365 k8s.io/kubernetes/pkg/registry/podsecuritypolicy/etcd yifan-gu 1
366 k8s.io/kubernetes/pkg/registry/podtemplate jsafrane 1
367 k8s.io/kubernetes/pkg/registry/podtemplate/etcd mtaufen 1
368 k8s.io/kubernetes/pkg/registry/replicaset mwielgus 1
369 k8s.io/kubernetes/pkg/registry/replicaset/etcd deads2k 1
370 k8s.io/kubernetes/pkg/registry/resourcequota maisem 1
371 k8s.io/kubernetes/pkg/registry/resourcequota/etcd cjcullen 1
372 k8s.io/kubernetes/pkg/registry/scheduledjob soltysh 0
373 k8s.io/kubernetes/pkg/registry/secret spxtr 1
374 k8s.io/kubernetes/pkg/registry/secret/etcd brendandburns 1
375 k8s.io/kubernetes/pkg/registry/service thockin 1
376 k8s.io/kubernetes/pkg/registry/service/allocator pmorie 1
377 k8s.io/kubernetes/pkg/registry/service/allocator/etcd caesarxuchao 1
378 k8s.io/kubernetes/pkg/registry/service/etcd alex-mohr 1
379 k8s.io/kubernetes/pkg/registry/service/ipallocator jlowdermilk 1
380 k8s.io/kubernetes/pkg/registry/service/ipallocator/controller lavalamp 1
381 k8s.io/kubernetes/pkg/registry/service/ipallocator/etcd andyzheng0831 1
382 k8s.io/kubernetes/pkg/registry/service/portallocator karlkfi 1
383 k8s.io/kubernetes/pkg/registry/serviceaccount liggitt 0
384 k8s.io/kubernetes/pkg/registry/serviceaccount/etcd liggitt 0
385 k8s.io/kubernetes/pkg/registry/thirdpartyresource vulpecula 1
386 k8s.io/kubernetes/pkg/registry/thirdpartyresource/etcd hurf 1
387 k8s.io/kubernetes/pkg/registry/thirdpartyresourcedata childsb 1
388 k8s.io/kubernetes/pkg/registry/thirdpartyresourcedata/etcd lavalamp 1
389 k8s.io/kubernetes/pkg/runtime wojtek-t 0
390 k8s.io/kubernetes/pkg/runtime/serializer wojtek-t 0
391 k8s.io/kubernetes/pkg/runtime/serializer/json wojtek-t 0
392 k8s.io/kubernetes/pkg/runtime/serializer/protobuf wojtek-t 0
393 k8s.io/kubernetes/pkg/runtime/serializer/recognizer wojtek-t 0
394 k8s.io/kubernetes/pkg/runtime/serializer/streaming wojtek-t 0
395 k8s.io/kubernetes/pkg/runtime/serializer/versioning wojtek-t 0
396 k8s.io/kubernetes/pkg/security/podsecuritypolicy erictune 0
397 k8s.io/kubernetes/pkg/security/podsecuritypolicy/capabilities erictune 0
398 k8s.io/kubernetes/pkg/security/podsecuritypolicy/group erictune 0
399 k8s.io/kubernetes/pkg/security/podsecuritypolicy/selinux erictune 0
400 k8s.io/kubernetes/pkg/security/podsecuritypolicy/user erictune 0
401 k8s.io/kubernetes/pkg/security/podsecuritypolicy/util erictune 0
402 k8s.io/kubernetes/pkg/securitycontext ArtfulCoder 1
403 k8s.io/kubernetes/pkg/serviceaccount liggitt 0
404 k8s.io/kubernetes/pkg/ssh jbeda 1
405 k8s.io/kubernetes/pkg/storage xiang90 0
406 k8s.io/kubernetes/pkg/storage/etcd mhrgoog 1
407 k8s.io/kubernetes/pkg/storage/etcd/util xiang90 0
408 k8s.io/kubernetes/pkg/storage/etcd3 xiang90 0
409 k8s.io/kubernetes/pkg/util jbeda 1
410 k8s.io/kubernetes/pkg/util/atomic kargakis 1
411 k8s.io/kubernetes/pkg/util/bandwidth thockin 1
412 k8s.io/kubernetes/pkg/util/cache thockin 1
413 k8s.io/kubernetes/pkg/util/config girishkalele 1
414 k8s.io/kubernetes/pkg/util/configz ixdy 1
415 k8s.io/kubernetes/pkg/util/dbus roberthbailey 1
416 k8s.io/kubernetes/pkg/util/deployment asalkeld 0
417 k8s.io/kubernetes/pkg/util/env asalkeld 0
418 k8s.io/kubernetes/pkg/util/errors a-robinson 1
419 k8s.io/kubernetes/pkg/util/exec krousey 1
420 k8s.io/kubernetes/pkg/util/fielderrors mml 1
421 k8s.io/kubernetes/pkg/util/flowcontrol ixdy 1
422 k8s.io/kubernetes/pkg/util/flushwriter vulpecula 1
423 k8s.io/kubernetes/pkg/util/framer piosz 1
424 k8s.io/kubernetes/pkg/util/goroutinemap saad-ali 0
425 k8s.io/kubernetes/pkg/util/hash timothysc 1
426 k8s.io/kubernetes/pkg/util/httpstream apelisse 1
427 k8s.io/kubernetes/pkg/util/httpstream/spdy zmerlynn 1
428 k8s.io/kubernetes/pkg/util/integer childsb 1
429 k8s.io/kubernetes/pkg/util/intstr brendandburns 1
430 k8s.io/kubernetes/pkg/util/io ArtfulCoder 1
431 k8s.io/kubernetes/pkg/util/iptables hurf 1
432 k8s.io/kubernetes/pkg/util/json liggitt 0
433 k8s.io/kubernetes/pkg/util/jsonpath spxtr 1
434 k8s.io/kubernetes/pkg/util/keymutex saad-ali 0
435 k8s.io/kubernetes/pkg/util/labels rmmh 1
436 k8s.io/kubernetes/pkg/util/mount xiang90 1
437 k8s.io/kubernetes/pkg/util/net spxtr 1
438 k8s.io/kubernetes/pkg/util/net/sets jdef 1
439 k8s.io/kubernetes/pkg/util/oom vishh 0
440 k8s.io/kubernetes/pkg/util/parsers derekwaynecarr 1
441 k8s.io/kubernetes/pkg/util/procfs roberthbailey 1
442 k8s.io/kubernetes/pkg/util/proxy cjcullen 1
443 k8s.io/kubernetes/pkg/util/rand madhusudancs 1
444 k8s.io/kubernetes/pkg/util/runtime davidopp 1
445 k8s.io/kubernetes/pkg/util/sets quinton-hoole 0
446 k8s.io/kubernetes/pkg/util/slice quinton-hoole 0
447 k8s.io/kubernetes/pkg/util/strategicpatch brendandburns 1
448 k8s.io/kubernetes/pkg/util/strings quinton-hoole 0
449 k8s.io/kubernetes/pkg/util/testing jlowdermilk 1
450 k8s.io/kubernetes/pkg/util/threading Random-Liu 1
451 k8s.io/kubernetes/pkg/util/validation Q-Lee 1
452 k8s.io/kubernetes/pkg/util/validation/field timstclair 1
453 k8s.io/kubernetes/pkg/util/wait Q-Lee 1
454 k8s.io/kubernetes/pkg/util/workqueue mtaufen 1
455 k8s.io/kubernetes/pkg/util/wsstream timothysc 1
456 k8s.io/kubernetes/pkg/util/yaml rmmh 1
457 k8s.io/kubernetes/pkg/version spxtr 1
458 k8s.io/kubernetes/pkg/volume saad-ali 0
459 k8s.io/kubernetes/pkg/volume/aws_ebs caesarxuchao 1
460 k8s.io/kubernetes/pkg/volume/azure_file maisem 1
461 k8s.io/kubernetes/pkg/volume/cephfs eparis 1
462 k8s.io/kubernetes/pkg/volume/cinder kargakis 1
463 k8s.io/kubernetes/pkg/volume/configmap derekwaynecarr 1
464 k8s.io/kubernetes/pkg/volume/downwardapi mikedanese 1
465 k8s.io/kubernetes/pkg/volume/empty_dir swagiaal 1
466 k8s.io/kubernetes/pkg/volume/fc andyzheng0831 1
467 k8s.io/kubernetes/pkg/volume/flexvolume Q-Lee 1
468 k8s.io/kubernetes/pkg/volume/flocker jbeda 1
469 k8s.io/kubernetes/pkg/volume/gce_pd saad-ali 0
470 k8s.io/kubernetes/pkg/volume/git_repo davidopp 1
471 k8s.io/kubernetes/pkg/volume/glusterfs ihmccreery 1
472 k8s.io/kubernetes/pkg/volume/host_path jbeda 1
473 k8s.io/kubernetes/pkg/volume/iscsi cjcullen 1
474 k8s.io/kubernetes/pkg/volume/nfs justinsb 1
475 k8s.io/kubernetes/pkg/volume/persistent_claim krousey 1
476 k8s.io/kubernetes/pkg/volume/rbd swagiaal 1
477 k8s.io/kubernetes/pkg/volume/secret rmmh 1
478 k8s.io/kubernetes/pkg/volume/util saad-ali 0
479 k8s.io/kubernetes/pkg/volume/vsphere_volume deads2k 1
480 k8s.io/kubernetes/pkg/watch mwielgus 1
481 k8s.io/kubernetes/pkg/watch/json thockin 1
482 k8s.io/kubernetes/pkg/watch/versioned childsb 1
483 k8s.io/kubernetes/plugin/pkg/admission/admit piosz 1
484 k8s.io/kubernetes/plugin/pkg/admission/alwayspullimages kargakis 1
485 k8s.io/kubernetes/plugin/pkg/admission/antiaffinity timothysc 1
486 k8s.io/kubernetes/plugin/pkg/admission/deny eparis 1
487 k8s.io/kubernetes/plugin/pkg/admission/exec deads2k 1
488 k8s.io/kubernetes/plugin/pkg/admission/initialresources piosz 0
489 k8s.io/kubernetes/plugin/pkg/admission/limitranger ncdc 1
490 k8s.io/kubernetes/plugin/pkg/admission/namespace/autoprovision derekwaynecarr 0
491 k8s.io/kubernetes/plugin/pkg/admission/namespace/exists derekwaynecarr 0
492 k8s.io/kubernetes/plugin/pkg/admission/namespace/lifecycle derekwaynecarr 0
493 k8s.io/kubernetes/plugin/pkg/admission/persistentvolume/label jdef 1
494 k8s.io/kubernetes/plugin/pkg/admission/resourcequota fabioy 1
495 k8s.io/kubernetes/plugin/pkg/admission/security/podsecuritypolicy swagiaal 1
496 k8s.io/kubernetes/plugin/pkg/admission/securitycontext/scdeny vulpecula 1
497 k8s.io/kubernetes/plugin/pkg/admission/serviceaccount liggitt 0
498 k8s.io/kubernetes/plugin/pkg/auth/authenticator/password/allow liggitt 0
499 k8s.io/kubernetes/plugin/pkg/auth/authenticator/password/passwordfile liggitt 0
500 k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/basicauth liggitt 0
501 k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/keystone jlowdermilk 1
502 k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/union liggitt 0
503 k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/x509 liggitt 0
504 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/oidc brendandburns 1
505 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/tokenfile liggitt 0
506 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/webhook ghodss 1
507 k8s.io/kubernetes/plugin/pkg/auth/authorizer/webhook hurf 1
508 k8s.io/kubernetes/plugin/pkg/client/auth/oidc cjcullen 1
509 k8s.io/kubernetes/plugin/pkg/scheduler fgrzadkowski 0
510 k8s.io/kubernetes/plugin/pkg/scheduler/algorithm fgrzadkowski 0
511 k8s.io/kubernetes/plugin/pkg/scheduler/algorithm/predicates fgrzadkowski 0
512 k8s.io/kubernetes/plugin/pkg/scheduler/algorithm/priorities fgrzadkowski 0
513 k8s.io/kubernetes/plugin/pkg/scheduler/algorithmprovider fgrzadkowski 0
514 k8s.io/kubernetes/plugin/pkg/scheduler/algorithmprovider/defaults fgrzadkowski 0
515 k8s.io/kubernetes/plugin/pkg/scheduler/api/validation fgrzadkowski 0
516 k8s.io/kubernetes/plugin/pkg/scheduler/factory fgrzadkowski 0
517 k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache fgrzadkowski 0
518 k8s.io/kubernetes/test/integration lavalamp 1
519 k8s.io/kubernetes/test/integration TestServiceAccountAutoCreate swagiaal 0
520 k8s.io/kubernetes/third_party/forked/reflect yifan-gu 1
521 k8s.io/kubernetes/third_party/golang/expansion dchen1107 1
522 k8s.io/kubernetes/third_party/golang/go/ast mml 1
523 k8s.io/kubernetes/third_party/golang/go/build pmorie 1
524 k8s.io/kubernetes/third_party/golang/go/constant Q-Lee 1
525 k8s.io/kubernetes/third_party/golang/go/doc fabioy 1
526 k8s.io/kubernetes/third_party/golang/go/parser davidopp 1
527 k8s.io/kubernetes/third_party/golang/go/printer madhusudancs 1
528 k8s.io/kubernetes/third_party/golang/go/scanner hurf 1
529 k8s.io/kubernetes/third_party/golang/go/token mml 1
530 Kibana Logging Instances Is Alive should check that the Kibana logging instance is alive swagiaal 0
531 kube-ui should check that the kube-ui instance is alive fabioy 1
532 Kubectl client Guestbook application should create and stop a working application pwittrock 0
533 Kubectl client Kubectl api-versions should check if v1 is in available api versions pwittrock 0
534 Kubectl client Kubectl apply should apply a new configuration to an existing RC pwittrock 0
535 Kubectl client Kubectl apply should reuse nodePort when apply to an existing SVC pwittrock 0
536 Kubectl client Kubectl cluster-info should check if Kubernetes master services is included in cluster-info pwittrock 0
537 Kubectl client Kubectl describe should check if kubectl describe prints relevant information for rc and pods pwittrock 0
538 Kubectl client Kubectl expose should create services for rc pwittrock 0
539 Kubectl client Kubectl label should update the label on a resource pwittrock 0
540 Kubectl client Kubectl logs should be able to retrieve and filter logs jlowdermilk 0
541 Kubectl client Kubectl patch should add annotations for pods in rc janetkuo 0
542 Kubectl client Kubectl rolling-update should support rolling-update to same image janetkuo 0
543 Kubectl client Kubectl run --rm job should create a job from an image, then delete the job soltysh 0
544 Kubectl client Kubectl run default should create an rc or deployment from an image janetkuo 0
545 Kubectl client Kubectl run deployment should create a deployment from an image janetkuo 0
546 Kubectl client Kubectl run job should create a job from an image when restart is Never soltysh 0
547 Kubectl client Kubectl run job should create a job from an image when restart is OnFailure soltysh 0
548 Kubectl client Kubectl run pod should create a pod from an image when restart is Never janetkuo 0
549 Kubectl client Kubectl run pod should create a pod from an image when restart is OnFailure janetkuo 0
550 Kubectl client Kubectl run rc should create an rc from an image janetkuo 0
551 Kubectl client Kubectl taint should update the taint on a node pwittrock 0
552 Kubectl client Kubectl version should check is all data is printed janetkuo 0
553 Kubectl client Proxy server should support --unix-socket=/path zmerlynn 1
554 Kubectl client Proxy server should support proxy with --port 0 ncdc 1
555 Kubectl client Simple pod should support exec ncdc 0
556 Kubectl client Simple pod should support exec through an HTTP proxy ncdc 0
557 Kubectl client Simple pod should support inline execution and attach ncdc 0
558 Kubectl client Simple pod should support port-forward ncdc 0
559 Kubectl client Update Demo should create and stop a replication controller sttts 0
560 Kubectl client Update Demo should do a rolling update of a replication controller sttts 0
561 Kubectl client Update Demo should scale a replication controller sttts 0
562 kubelet Clean up pods on node kubelet should be able to delete 10 pods per node in 1m0s. bgrant0607 1
563 Kubelet experimental resource usage tracking for 100 pods per node over 20m0s yujuhong 0
564 Kubelet experimental resource usage tracking over 30m0s with 50 pods per node. yujuhong 0
565 Kubelet experimental resource usage tracking resource tracking for 100 pods per node ghodss 0
566 Kubelet regular resource usage tracking for 0 pods per node over 20m0s yujuhong 0
567 Kubelet regular resource usage tracking for 100 pods per node over 20m0s yujuhong 0
568 Kubelet regular resource usage tracking for 35 pods per node over 20m0s yujuhong 0
569 Kubelet regular resource usage tracking over 30m0s with 0 pods per node. yujuhong 0
570 Kubelet regular resource usage tracking over 30m0s with 35 pods per node. yujuhong 0
571 Kubelet regular resource usage tracking resource tracking for 0 pods per node pmorie 1
572 Kubelet regular resource usage tracking resource tracking for 100 pods per node justinsb 1
573 Kubelet regular resource usage tracking resource tracking for 35 pods per node madhusudancs 1
574 KubeletManagedEtcHosts should test kubelet managed /etc/hosts file ArtfulCoder 1
575 KubeProxy should test kube-proxy vulpecula 1
576 Kubernetes Dashboard should check that the kubernetes-dashboard instance is alive wonderfly 0
577 LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied. cjcullen 1
578 Liveness liveness pods should be automatically restarted andyzheng0831 1
579 Load capacity should be able to handle 3 pods per node gmarek 0
580 Load capacity should be able to handle 30 pods per node wojtek-t 0
581 MasterCerts should have all expected certs on the master apelisse 1
582 MaxPods Validates MaxPods limit number of pods that are allowed to run. gmarek 0
583 Mesos applies slave attributes as labels justinsb 1
584 Mesos schedules pods annotated with roles on correct slaves timstclair 1
585 Mesos starts static pods on every node in the mesos cluster lavalamp 1
586 MetricsGrabber should grab all metrics from a ControllerManager. gmarek 0
587 MetricsGrabber should grab all metrics from a Kubelet. gmarek 0
588 MetricsGrabber should grab all metrics from a Scheduler. gmarek 0
589 MetricsGrabber should grab all metrics from API server. gmarek 0
590 Monitoring should verify monitoring pods and all cluster nodes are available on influxdb using heapster. piosz 0
591 Namespaces Delete 90 percent of 100 namespace in 150 seconds caesarxuchao 1
592 Namespaces Delete ALL of 100 namespace in 150 seconds luxas 1
593 Namespaces should always delete fast (ALL of 100 namespaces in 150 seconds) rmmh 1
594 Namespaces should delete fast enough (90 percent of 100 namespaces in 150 seconds) kevin-wangzefeng 1
595 Namespaces should ensure that all pods are removed when a namespace is deleted. xiang90 1
596 Namespaces should ensure that all services are removed when a namespace is deleted. pmorie 1
597 Networking Granular Checks should function for pod communication between nodes freehan 0
598 Networking Granular Checks should function for pod communication on a single node freehan 0
599 Networking IPerf should transfer ~ 1GB onto the service endpoint 1 servers (maximum of 1 clients) ghodss 1
600 Networking should function for intra-pod communication sttts 0
601 Networking should provide Internet connection for containers sttts 0
602 Networking should provide unchanging, static URL paths for kubernetes api services freehan 0
603 Networking should provide unchanging, static URL paths for kubernetes api services. ihmccreery 1
604 NodeOutOfDisk runs out of disk space vishh 0
605 NodeProblemDetector KernelMonitor should generate node condition and events for corresponding errors Random-Liu 0
606 Nodes Network when a minion node becomes unreachable recreates pods scheduled on the unreachable minion node AND allows scheduling of pods on a minion after it rejoins the cluster childsb 1
607 Nodes Network when a node becomes unreachable All pods on the unreachable node should be marked as NotReady upon the node turn NotReady AND all pods should be mark back to Ready when the node get back to Ready before pod eviction timeout freehan 0
608 Nodes Network when a node becomes unreachable recreates pods scheduled on the unreachable node AND allows scheduling of pods on a node after it rejoins the cluster madhusudancs 1
609 Nodes Resize should be able to add nodes piosz 1
610 Nodes Resize should be able to delete nodes zmerlynn 1
611 PersistentVolumes NFS volume can be created, bound, retrieved, unbound, and used by a pod jsafrane 0
612 persistentVolumes PersistentVolume yifan-gu 1
613 Pet Store should scale to persist a nominal number ( 50 ) of transactions in 1m0s seconds timstclair 1
614 PetSet provide basic identity david-mcmahon 1
615 PetSet should handle healthy pet restarts during scale ixdy 1
616 Pod Disks should schedule a pod w/ a readonly PD on two hosts, then remove both. saad-ali 0
617 Pod Disks should schedule a pod w/ a RW PD shared between multiple containers, write to PD, delete pod, verify contents, and repeat in rapid succession saad-ali 0
618 Pod Disks should schedule a pod w/ a RW PD, remove it, then schedule it on another host saad-ali 0
619 Pod Disks should schedule a pod w/two RW PDs both mounted to one container, write to PD, verify contents, delete pod, recreate pod, verify contents, and repeat in rapid succession saad-ali 0
620 Pods should *not* be restarted with a /healthz http liveness probe cjcullen 1
621 Pods should *not* be restarted with a docker exec "cat /tmp/health" liveness probe vishh 0
622 Pods should allow activeDeadlineSeconds to be updated derekwaynecarr 0
623 Pods should be restarted with a /healthz http liveness probe girishkalele 1
624 Pods should be restarted with a docker exec "cat /tmp/health" liveness probe bgrant0607 1
625 Pods should be schedule with cpu and memory limits vishh 0
626 Pods should be submitted and removed wonderfly 1
627 Pods should be updated derekwaynecarr 1
628 Pods should cap back-off at MaxContainerBackOff maisem 1
629 Pods should contain environment variables for services jlowdermilk 1
630 Pods should get a host IP xiang90 1
631 Pods should have monotonically increasing restart count Random-Liu 1
632 Pods should have their auto-restart back-off timer reset on image update mikedanese 1
633 Pods should invoke init containers on a RestartAlways pod cjcullen 1
634 Pods should invoke init containers on a RestartNever pod justinsb 1
635 Pods should not start app containers and fail the pod if init containers fail on a RestartNever pod maisem 0
636 Pods should not start app containers if init containers fail on a RestartAlways pod david-mcmahon 1
637 Pods should support remote command execution over websockets madhusudancs 1
638 Pods should support retrieving logs from the container over websockets vishh 0
639 Port forwarding With a server that expects a client request should support a client that connects, sends data, and disconnects sttts 0
640 Port forwarding With a server that expects a client request should support a client that connects, sends no data, and disconnects sttts 0
641 Port forwarding With a server that expects no client request should support a client that connects, sends no data, and disconnects sttts 0
642 PreStop should call prestop when killing a pod ncdc 1
643 PrivilegedPod should test privileged pod vishh 0
644 Probing container with readiness probe should not be ready before initial delay and never restart smarterclayton 1
645 Probing container with readiness probe that fails should never be ready and never restart mtaufen 1
646 Proxy version v1 should proxy logs on node girishkalele 1
647 Proxy version v1 should proxy logs on node using proxy subresource karlkfi 1
648 Proxy version v1 should proxy logs on node with explicit kubelet port mwielgus 1
649 Proxy version v1 should proxy logs on node with explicit kubelet port using proxy subresource bgrant0607 1
650 Proxy version v1 should proxy through a service and a pod mml 1
651 Proxy version v1 should proxy to cadvisor Random-Liu 1
652 Proxy version v1 should proxy to cadvisor using proxy subresource deads2k 1
653 Reboot each node by dropping all inbound packets for a while and ensure they function afterwards quinton-hoole 0
654 Reboot each node by dropping all outbound packets for a while and ensure they function afterwards quinton-hoole 0
655 Reboot each node by ordering clean reboot and ensure they function upon restart quinton-hoole 0
656 Reboot each node by ordering unclean reboot and ensure they function upon restart quinton-hoole 0
657 Reboot each node by switching off the network interface and ensure they function upon switch on quinton-hoole 0
658 Reboot each node by triggering kernel panic and ensure they function upon restart quinton-hoole 0
659 Redis should create and stop redis servers timstclair 1
660 ReplicaSet should serve a basic image on each replica with a private image pmorie 1
661 ReplicaSet should serve a basic image on each replica with a public image krousey 0
662 ReplicationController should serve a basic image on each replica with a private image jbeda 1
663 ReplicationController should serve a basic image on each replica with a public image a-robinson 1
664 Resource usage of system containers should not exceed expected amount. ncdc 1
665 ResourceQuota should create a ResourceQuota and capture the life of a configMap. mhrgoog 1
666 ResourceQuota should create a ResourceQuota and capture the life of a loadBalancer service. ncdc 1
667 ResourceQuota should create a ResourceQuota and capture the life of a nodePort service updated to clusterIP. ghodss 1
668 ResourceQuota should create a ResourceQuota and capture the life of a nodePort service updated to loadBalancer. jdef 1
669 ResourceQuota should create a ResourceQuota and capture the life of a nodePort service. thockin 1
670 ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim. bgrant0607 1
671 ResourceQuota should create a ResourceQuota and capture the life of a pod. pmorie 1
672 ResourceQuota should create a ResourceQuota and capture the life of a replication controller. ihmccreery 1
673 ResourceQuota should create a ResourceQuota and capture the life of a secret. ncdc 1
674 ResourceQuota should create a ResourceQuota and capture the life of a service. timstclair 1
675 ResourceQuota should create a ResourceQuota and ensure its status is promptly calculated. krousey 1
676 ResourceQuota should verify ResourceQuota with best effort scope. mml 1
677 ResourceQuota should verify ResourceQuota with terminating scopes. ncdc 1
678 Restart should restart all nodes and ensure all nodes and pods recover andyzheng0831 1
679 RethinkDB should create and stop rethinkdb servers kargakis 1
680 Scale should be able to launch 500 pods, 10 per minion, in 25 rcs/thread. wonderfly 1
681 Scale should be able to launch 500 pods, 10 per minion, in 5 rcs/thread. bgrant0607 1
682 SchedulerPredicates validates MaxPods limit number of pods that are allowed to run gmarek 0
683 SchedulerPredicates validates resource limits of pods that are allowed to run gmarek 0
684 SchedulerPredicates validates that a pod with an invalid NodeAffinity is rejected deads2k 1
685 SchedulerPredicates validates that a pod with an invalid podAffinity is rejected because of the LabelSelectorRequirement is invalid smarterclayton 1
686 SchedulerPredicates validates that embedding the JSON NodeAffinity setting as a string in the annotation value work yifan-gu 1
687 SchedulerPredicates validates that embedding the JSON PodAffinity and PodAntiAffinity setting as a string in the annotation value work hurf 1
688 SchedulerPredicates validates that Inter-pod-Affinity is respected if not matching hurf 1
689 SchedulerPredicates validates that InterPod Affinity and AntiAffinity is respected if matching girishkalele 1
690 SchedulerPredicates validates that InterPodAffinity is respected if matching kevin-wangzefeng 1
691 SchedulerPredicates validates that InterPodAffinity is respected if matching with multiple Affinities caesarxuchao 1
692 SchedulerPredicates validates that InterPodAntiAffinity is respected if matching 2 sttts 0
693 SchedulerPredicates validates that NodeAffinity is respected if not matching fgrzadkowski 0
694 SchedulerPredicates validates that NodeSelector is respected fgrzadkowski 0
695 SchedulerPredicates validates that NodeSelector is respected if matching gmarek 0
696 SchedulerPredicates validates that NodeSelector is respected if not matching gmarek 0
697 SchedulerPredicates validates that required NodeAffinity setting is respected if matching ArtfulCoder 1
698 SchedulerPredicates validates that taints-tolerations is respected if matching jlowdermilk 1
699 SchedulerPredicates validates that taints-tolerations is respected if not matching derekwaynecarr 1
700 Secret should create a pod that reads a secret luxas 1
701 Secrets should be consumable from pods Random-Liu 1
702 Secrets should be consumable from pods in env vars ArtfulCoder 1
703 Secrets should be consumable from pods in volume ghodss 1
704 Security Context should support container.SecurityContext.RunAsUser alex-mohr 1
705 Security Context should support pod.Spec.SecurityContext.RunAsUser bgrant0607 1
706 Security Context should support pod.Spec.SecurityContext.SupplementalGroups andyzheng0831 1
707 Security Context should support volume SELinux relabeling wonderfly 1
708 Security Context should support volume SELinux relabeling when using hostIPC alex-mohr 1
709 Security Context should support volume SELinux relabeling when using hostPID dchen1107 1
710 Service endpoints latency should not be very high cjcullen 1
711 ServiceAccounts should ensure a single API token exists liggitt 0
712 ServiceAccounts should mount an API token into pods liggitt 0
713 ServiceLoadBalancer should support simple GET on Ingress ips bprashanth 0
714 Services should be able to change the type and nodeport settings of a service bprashanth 0
715 Services should be able to change the type and ports of a service bprashanth 0
716 Services should be able to create a functioning external load balancer bprashanth 0
717 Services should be able to create a functioning NodePort service bprashanth 0
718 Services should be able to up and down services bprashanth 0
719 Services should check NodePort out-of-range bprashanth 0
720 Services should correctly serve identically named services in different namespaces on different external IP addresses bprashanth 0
721 Services should create endpoints for unready pods maisem 0
722 Services should prevent NodePort collisions bprashanth 0
723 Services should provide secure master service bprashanth 0
724 Services should release NodePorts on delete bprashanth 0
725 Services should release the load balancer when Type goes from LoadBalancer -> NodePort karlkfi 1
726 Services should serve a basic endpoint from pods bprashanth 0
727 Services should serve identically named services in different namespaces on different load-balancers davidopp 1
728 Services should serve multiport endpoints from pods bprashanth 0
729 Services should work after restarting apiserver bprashanth 0
730 Services should work after restarting kube-proxy bprashanth 0
731 Shell should pass tests for services.sh mtaufen 1
732 Skipped Cluster upgrade kube-push of master should maintain responsive services a-robinson 1
733 Skipped Cluster upgrade upgrade-cluster should maintain a functioning cluster smarterclayton 1
734 Skipped Cluster upgrade upgrade-master should maintain responsive services vulpecula 1
735 Spark should start spark master, driver and workers girishkalele 1
736 SSH should SSH to all nodes and run commands quinton-hoole 0
737 Storm should create and stop Zookeeper, Nimbus and Storm worker servers swagiaal 1
738 ThirdParty resources Simple Third Party creating/deleting thirdparty objects works luxas 1
739 Ubernetes Lite should spread the pods of a replication controller across zones quinton-hoole 0
740 Ubernetes Lite should spread the pods of a service across zones quinton-hoole 0
741 Upgrade cluster upgrade should maintain a functioning cluster girishkalele 1
742 Upgrade cluster upgrade should maintain responsive services david-mcmahon 1
743 Upgrade master upgrade should maintain responsive services mikedanese 1
744 Upgrade node upgrade should maintain a functioning cluster zmerlynn 1
745 Upgrade node upgrade should maintain responsive services childsb 1
746 V1Job should delete a job soltysh 0
747 V1Job should fail a job soltysh 0
748 V1Job should keep restarting failed pods soltysh 0
749 V1Job should run a job to completion when tasks sometimes fail and are locally restarted soltysh 0
750 V1Job should run a job to completion when tasks sometimes fail and are not locally restarted soltysh 0
751 V1Job should run a job to completion when tasks succeed soltysh 0
752 V1Job should scale a job down soltysh 0
753 V1Job should scale a job up soltysh 0
754 Variable Expansion should allow composing env vars into new env vars ghodss 1
755 Variable Expansion should allow substituting values in a container's args dchen1107 1
756 Variable Expansion should allow substituting values in a container's command mml 1
757 Volumes Ceph RBD should be mountable fabioy 1
758 Volumes CephFS should be mountable Q-Lee 1
759 Volumes Cinder should be mountable cjcullen 1
760 Volumes GlusterFS should be mountable eparis 1
761 Volumes iSCSI should be mountable david-mcmahon 1
762 Volumes NFS should be mountable andyzheng0831 1
763 Volumes PD should be mountable caesarxuchao 1