Address PR comments, randomly assign owners for new tests.

pull/6/head
Ryan Hitchman 2016-07-06 11:57:44 -07:00
parent 3d485098c3
commit 616e938662
2 changed files with 404 additions and 301 deletions

View File

@ -14,21 +14,26 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import collections
import csv
import re
import json
import os
import random
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'))
OWNERS_PATH = os.path.abspath(
os.path.join(BASE_DIR, '..', 'test', 'test_owners.csv'))
GCS_URL_BASE = 'https://storage.googleapis.com/kubernetes-test-history/'
SKIP_MAINTAINERS = {
'aronchick', 'bgrant0607-nocc', 'goltermann', 'sarahnovotny'}
def get_test_history():
url = time.strftime('https://storage.googleapis.com/kubernetes-test-history/logs/%Y-%m-%d.json')
url = time.strftime(GCS_URL_BASE + 'logs/%Y-%m-%d.json')
resp = urllib2.urlopen(url)
content = resp.read()
if resp.headers.get('content-encoding') == 'gzip':
@ -44,42 +49,47 @@ def normalize(name):
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
with open(fname) as f:
for n, (name, owner, random_assignment) in enumerate(csv.reader(f)):
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)])
with open(fname, 'w') as f:
out = csv.writer(f, lineterminator='\n')
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:
# Github doesn't seem to support team membership listing without a key with
# 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"]
# [].slice.call(document.querySelectorAll('.team-member-username a')).map(
# e => e.textContent.trim())
ret = {"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"}
return sorted(ret - SKIP_MAINTAINERS)
def main():
@ -99,10 +109,25 @@ def main():
for name in outdated_tests:
owners.pop(name)
print '# UNEXPECTED MAINTAINERS (randomly assigned, not in kubernetes-maintainers)'
print '# UNEXPECTED MAINTAINERS ',
print '(randomly assigned, but 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)
owners.pop(name)
print
owner_counts = collections.Counter(
owner for name, (owner, random) in owners.iteritems()
if owner in maintainers)
for test_name in set(test_names) - set(owners):
new_owner, _count = random.choice(owner_counts.most_common()[-4:])
owner_counts[new_owner] += 1
owners[test_name] = (new_owner, True)
print '# Tests per maintainer:'
for owner, count in owner_counts.most_common():
print '%-20s %3d' % (owner, count)
write_owners(OWNERS_PATH + '.new', owners)

View File

@ -1,5 +1,6 @@
test name,owner,auto-assigned
name,owner,auto-assigned
Addon update should propagate add-on file changes,eparis,1
AfterSuite,deads2k,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
@ -10,11 +11,19 @@ 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
Cluster size autoscaling should add node to the particular mig,spxtr,1
Cluster size autoscaling should correctly scale down after a node is not needed,pmorie,1
Cluster size autoscaling should correctly scale down after a node is not needed when there is non autoscaled pool,krousey,1
Cluster size autoscaling should disable node pool autoscaling,Q-Lee,1
Cluster size autoscaling should increase cluster size if pending pods are small,a-robinson,1
Cluster size autoscaling should increase cluster size if pending pods are small and there is another node pool that is not autoscaled,apelisse,1
Cluster size autoscaling should increase cluster size if pods are pending due to host port conflict,brendandburns,1
Cluster size autoscaling should scale up correct target pool,mikedanese,1
Cluster size autoscaling shouldn't increase cluster size if pending pod is too large,karlkfi,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
@ -22,9 +31,20 @@ ConfigMap should be consumable from pods in volume as non-root with FSGroup,robe
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 from pods in volumpe,mwielgus,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
Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should be able to pull from private registry with secret,mikedanese,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 docker hub,girishkalele,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
Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should not be able to pull from private registry without secret,yifan-gu,1
Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should not be able to pull image from invalid registry,janetkuo,1
Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should not be able to pull non-existing image from gcr.io,kevin-wangzefeng,1
Container Runtime Conformance Test container runtime conformance blackbox test when starting a container that exits it should run with the expected status,luxas,1
Container Runtime Conformance Test container runtime conformance blackbox test when starting a container that exits should report termination message if TerminationMessagePath is set,timothysc,1
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
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
@ -36,6 +56,9 @@ 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 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
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
@ -44,21 +67,21 @@ 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 able to scale,janetkuo,1
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 container's limits.cpu/memory and requests.cpu/memory as env vars,deads2k,1
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 container's cpu limit,smarterclayton,1
Downward API volume should provide container's cpu request,krousey,1
Downward API volume should provide container's memory limit,david-mcmahon,1
Downward API volume should provide container's memory request,mikedanese,1
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
@ -81,13 +104,14 @@ EmptyDir volumes should have the correct mode,mikedanese,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 files with FSGroup ownership should support (root,0644,tmpfs)",justinsb,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
Etcd failure should recover from network partition with master,justinsb,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
@ -101,28 +125,37 @@ 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
Federated Services DNS non-local federated service should be able to discover a non-local federated service,jlowdermilk,1
Federated Services DNS should be able to discover a federated service,derekwaynecarr,1
Federated Services Service creation should create matching services in underlying clusters,jbeda,1
Federated Services Service creation should succeed,rmmh,1
Federation apiserver Cluster objects should be created and deleted successfully,ghodss,1
Federation apiserver should allow creation of cluster api objects,mtaufen,1
GCE L7 LoadBalancer Controller should create GCE L7 loadbalancers and verify Ingress,bprashanth,0
GKE local SSD should write and read from node local SSD,fabioy,0
GKE node pools should create a cluster with multiple node pools,kargakis,1
Garbage collector should handle the creation of 1000 pods,xiang90,1
"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,jlowdermilk,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,bgrant0607,1
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,ghodss,1
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,davidopp,1
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 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 (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
Image Container Conformance Test image conformance blackbox test when testing image that does not exist should ignore pull failures,jsafrane,1
Image Container Conformance Test image conformance blackbox test when testing images that exist It should present successfully,yujuhong,1
Image Container Conformance Test image conformance blackbox test when testing images that exist should list pulled images,maisem,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
@ -133,6 +166,260 @@ 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
Kibana Logging Instances Is Alive should check that the Kibana logging instance is alive,swagiaal,0
KubeProxy should test kube-proxy,vulpecula,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 Container Manager oom score adjusting when scheduling a busybox command that always fails in a pod should be possible to delete,jbeda,1
Kubelet Container Manager oom score adjusting when scheduling a busybox command that always fails in a pod should have an error terminated reason,vulpecula,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 metrics api when querying /stats/summary it should report resource usage through the stats api,fabioy,1
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
Kubelet when scheduling a busybox command in a pod it should print the output to logs,ixdy,1
Kubelet when scheduling a read only busybox container it should not write to root filesystem,timothysc,1
KubeletManagedEtcHosts should test kubelet managed /etc/hosts file,ArtfulCoder,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
Loadbalancing: L7 GCE shoud create ingress with given static-ip,vulpecula,1
Loadbalancing: L7 GCE should conform to Ingress spec,andyzheng0831,1
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 API server.,gmarek,0
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
MirrorPod when create a mirror pod should be recreated when mirror pod forcibly deleted,roberthbailey,1
MirrorPod when create a mirror pod should be recreated when mirror pod gracefully deleted,justinsb,1
MirrorPod when create a mirror pod should be updated when static pod updated,saad-ali,1
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.",madhusudancs,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 should create a PersistentVolume, Claim, and a client Pod that will test the read/write access of the volume",ArtfulCoder,1
Pet Store should scale to persist a nominal number ( 50 ) of transactions in 1m0s seconds,timstclair,1
PetSet Basic PetSet functionality should handle healthy pet restarts during scale,kevin-wangzefeng,1
PetSet Basic PetSet functionality should provide basic identity,girishkalele,1
PetSet Deploy clustered applications should creating a working mysql cluster,piosz,1
PetSet Deploy clustered applications should creating a working redis cluster,mtaufen,1
PetSet Deploy clustered applications should creating a working zookeeper cluster,rmmh,1
"Pod Disks Should schedule a pod w/ a RW PD, gracefully remove it, then schedule it on another host",alex-mohr,1
"Pod Disks Should schedule a pod w/ a readonly PD on two hosts, then remove both gracefully.",ghodss,1
"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/ a RW PD, ungracefully remove it, then schedule it on another host",mml,1
"Pod Disks should schedule a pod w/ a readonly PD on two hosts, then remove both ungracefully.",kargakis,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/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,davidopp,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.,david-mcmahon,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.,jdef,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
SSH should SSH to all nodes and run commands,quinton-hoole,0
"Scale should be able to launch 500 pods, 10 per minion, in 25 rcs/thread.",roberthbailey,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 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 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 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 seccomp alpha docker/default annotation,freehan,1
Security Context should support seccomp alpha unconfined annotation on the container,childsb,1
Security Context should support seccomp alpha unconfined annotation on the pod,krousey,1
Security Context should support seccomp default which is unconfined,lavalamp,1
Security Context should support volume SELinux relabeling,thockin,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 NodePort service,bprashanth,0
Services should be able to create a functioning external load balancer,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
"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 NFS should be mountable,andyzheng0831,1
Volumes PD should be mountable,caesarxuchao,1
Volumes iSCSI should be mountable,david-mcmahon,1
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
k8s.io/kubernetes/cluster/addons/dns/kube2sky,zmerlynn,1
k8s.io/kubernetes/cmd/genutils,rmmh,1
k8s.io/kubernetes/cmd/hyperkube,jbeda,0
@ -153,7 +440,7 @@ 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/executor,brendandburns,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
@ -169,7 +456,7 @@ 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,dchen1107,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
@ -180,11 +467,14 @@ 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/cmd/federation-apiserver/app,dchen1107,1
k8s.io/kubernetes/federation/pkg/dnsprovider/providers/aws/route53,cjcullen,1
k8s.io/kubernetes/federation/pkg/dnsprovider/providers/google/clouddns,jsafrane,1
k8s.io/kubernetes/federation/pkg/federation-controller/cluster,nikhiljindal,0
k8s.io/kubernetes/federation/pkg/federation-controller/service,pmorie,1
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/hack/cmd/teststale,thockin,1
k8s.io/kubernetes/pkg/admission,dchen1107,1
k8s.io/kubernetes/pkg/api,Q-Lee,1
k8s.io/kubernetes/pkg/api/endpoints,swagiaal,1
@ -196,7 +486,7 @@ 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/testapi,caesarxuchao,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
@ -208,6 +498,7 @@ 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/certificates/install,zmerlynn,1
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
@ -215,6 +506,7 @@ 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/install,ixdy,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
@ -226,13 +518,14 @@ 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/testing/core,maisem,1
k8s.io/kubernetes/pkg/client/transport,eparis,1
k8s.io/kubernetes/pkg/client/typed/discovery,ihmccreery,1
k8s.io/kubernetes/pkg/client/typed/discovery,fabioy,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/clientcmd/api,thockin,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
@ -248,23 +541,30 @@ 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/framework,smarterclayton,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/namespace,karlkfi,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/podgc,jdef,1
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,zmerlynn,1
k8s.io/kubernetes/pkg/controller/volume/attachdetach,luxas,1
k8s.io/kubernetes/pkg/controller/volume/attachdetach/cache,hurf,1
k8s.io/kubernetes/pkg/controller/volume/attachdetach/reconciler,jsafrane,1
k8s.io/kubernetes/pkg/controller/volume/cache,saad-ali,0
k8s.io/kubernetes/pkg/controller/volume/persistentvolume,apelisse,1
k8s.io/kubernetes/pkg/controller/volume/reconciler,xiang90,1
k8s.io/kubernetes/pkg/conversion,swagiaal,1
k8s.io/kubernetes/pkg/conversion/queryparams,caesarxuchao,1
k8s.io/kubernetes/pkg/credentialprovider,justinsb,1
@ -276,8 +576,8 @@ 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,madhusudancs,1
k8s.io/kubernetes/pkg/kubectl/cmd,rmmh,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
@ -297,6 +597,7 @@ 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/hostport,erictune,1
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
@ -312,24 +613,29 @@ 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/kubelet/volume/cache,swagiaal,1
k8s.io/kubernetes/pkg/kubelet/volume/reconciler,jdef,1
k8s.io/kubernetes/pkg/kubelet/volumemanager/cache,swagiaal,1
k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler,timstclair,1
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/config,ixdy,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/quota,sttts,1
k8s.io/kubernetes/pkg/quota/evaluator/core,yifan-gu,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/configmap/etcd,janetkuo,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/deployment/etcd,swagiaal,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
@ -349,6 +655,8 @@ 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/networkpolicy,david-mcmahon,1
k8s.io/kubernetes/pkg/registry/networkpolicy/etcd,xiang90,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
@ -403,7 +711,7 @@ 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,eparis,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
@ -414,6 +722,7 @@ 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/diff,piosz,1
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
@ -468,7 +777,7 @@ 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/glusterfs,timstclair,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
@ -504,6 +813,7 @@ 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/rbac,hurf,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
@ -516,7 +826,6 @@ 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
@ -527,237 +836,6 @@ 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
kubelet Clean up pods on node kubelet should be able to delete 10 pods per node in 1m0s.,yujuhong,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 name owner auto-assigned
2 Addon update should propagate add-on file changes Addon update should propagate add-on file changes eparis 1
3 AfterSuite deads2k 1
4 Autoscaling should scale cluster size based on cpu reservation Autoscaling should scale cluster size based on cpu reservation davidopp 1
5 Autoscaling should scale cluster size based on cpu utilization Autoscaling should scale cluster size based on cpu utilization thockin 1
6 Autoscaling should scale cluster size based on memory reservation Autoscaling should scale cluster size based on memory reservation hurf 1
11 Celery-RabbitMQ should create and stop celery+rabbitmq servers Celery-RabbitMQ should create and stop celery+rabbitmq servers luxas 1
12 Clean up pods on node kubelet should be able to delete 10 pods per node in 1m0s. Clean up pods on node kubelet should be able to delete 10 pods per node in 1m0s. lavalamp 1
13 Cluster level logging using Elasticsearch should check that logs from pods on all nodes are ingested into Elasticsearch 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
14 Cluster size autoscaling Should scale cluster size based on cpu reservation 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 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 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 Cluster size autoscaling Should scale cluster size based on memory utilization childsb 1
18 Cluster size autoscaling should add node to the particular mig spxtr 1
19 Cluster size autoscaling should correctly scale down after a node is not needed pmorie 1
20 Cluster size autoscaling should correctly scale down after a node is not needed when there is non autoscaled pool krousey 1
21 Cluster size autoscaling should disable node pool autoscaling Q-Lee 1
22 Cluster size autoscaling should increase cluster size if pending pods are small a-robinson 1
23 Cluster size autoscaling should increase cluster size if pending pods are small and there is another node pool that is not autoscaled apelisse 1
24 Cluster size autoscaling should increase cluster size if pods are pending due to host port conflict brendandburns 1
25 Cluster size autoscaling should scale up correct target pool mikedanese 1
26 Cluster size autoscaling shouldn't increase cluster size if pending pod is too large karlkfi 1
27 ClusterDns should create pod that uses dns ClusterDns should create pod that uses dns sttts 0
28 ConfigMap should be consumable from pods in volume ConfigMap should be consumable from pods in volume alex-mohr 1
29 ConfigMap should be consumable from pods in volume as non-root ConfigMap should be consumable from pods in volume as non-root ArtfulCoder 1
31 ConfigMap should be consumable from pods in volume with mappings ConfigMap should be consumable from pods in volume with mappings karlkfi 1
32 ConfigMap should be consumable from pods in volume with mappings as non-root ConfigMap should be consumable from pods in volume with mappings as non-root apelisse 1
33 ConfigMap should be consumable from pods in volume with mappings as non-root with FSGroup ConfigMap should be consumable from pods in volume with mappings as non-root with FSGroup zmerlynn 1
34 ConfigMap should be consumable from pods in volumpe mwielgus 1
35 ConfigMap should be consumable via environment variable ConfigMap should be consumable via environment variable a-robinson 1
36 ConfigMap updates should be reflected in volume ConfigMap updates should be reflected in volume kevin-wangzefeng 1
37 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 Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should be able to pull from private registry with secret Random-Liu mikedanese 0 1
38 Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should be able to pull image from docker hub girishkalele 1
39 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
40 Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should not be able to pull from private registry without secret yifan-gu 1
41 Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should not be able to pull image from invalid registry janetkuo 1
42 Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image should not be able to pull non-existing image from gcr.io kevin-wangzefeng 1
43 Container Runtime Conformance Test container runtime conformance blackbox test when starting a container that exits it should run with the expected status luxas 1
44 Container Runtime Conformance Test container runtime conformance blackbox test when starting a container that exits should report termination message if TerminationMessagePath is set timothysc 1
45 DNS should provide DNS for pods for Hostname and Subdomain Annotation mtaufen 1
46 DNS should provide DNS for services roberthbailey 1
47 DNS should provide DNS for the cluster roberthbailey 1
48 Daemon set should launch a daemon pod on every node of the cluster Daemon set should launch a daemon pod on every node of the cluster andyzheng0831 1
49 Daemon set should run and stop complex daemon Daemon set should run and stop complex daemon ArtfulCoder 1
50 Daemon set should run and stop simple daemon Daemon set should run and stop simple daemon mtaufen 1
56 Density should allow starting 30 pods per node Density should allow starting 30 pods per node gmarek 0
57 Density should allow starting 50 pods per node Density should allow starting 50 pods per node wojtek-t 0
58 Density should allow starting 95 pods per node Density should allow starting 95 pods per node wojtek-t 0
59 Deployment RecreateDeployment should delete old pods and create new ones pwittrock 0
60 Deployment RollingUpdateDeployment should delete old pods and create new ones pwittrock 0
61 Deployment RollingUpdateDeployment should scale up and down in the right order pwittrock 0
62 Deployment deployment should create new pods Deployment deployment should create new pods pwittrock 0
63 Deployment deployment should delete old pods and create new ones Deployment deployment should delete old pods and create new ones nikhiljindal 0
64 Deployment deployment should delete old replica sets Deployment deployment should delete old replica sets pwittrock 0
67 Deployment deployment should support rollback Deployment deployment should support rollback pwittrock 0
68 Deployment deployment should support rollback when there's replica set with no revision Deployment deployment should support rollback when there's replica set with no revision pwittrock 0
69 Deployment deployment should support rollover Deployment deployment should support rollover pwittrock 0
70 Deployment paused deployment should be able to scale janetkuo 1
71 Deployment paused deployment should be ignored by the controller 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
72 Docker Containers should be able to override the image's default arguments (docker cmd) Docker Containers should be able to override the image's default arguments (docker cmd) maisem 0
73 Docker Containers should be able to override the image's default command and arguments Docker Containers should be able to override the image's default command and arguments maisem 0
74 Docker Containers should be able to override the image's default commmand (docker entrypoint) Docker Containers should be able to override the image's default commmand (docker entrypoint) maisem 0
75 Docker Containers should use the image defaults if command and args are blank Docker Containers should use the image defaults if command and args are blank vishh 0
76 Downward API should create a pod that prints his name and namespace Downward API should create a pod that prints his name and namespace nhlfr 0
77 Downward API should provide container's limits.cpu/memory and requests.cpu/memory as env vars deads2k 1
78 Downward API should provide default limits.cpu/memory from node capacity Downward API should provide default limits.cpu/memory from node capacity derekwaynecarr 0
79 Downward API should provide pod IP as an env var Downward API should provide pod IP as an env var nhlfr 0
80 Downward API should provide pod name and namespace as env vars Downward API should provide pod name and namespace as env vars nhlfr 0
81 Downward API volume should provide container's cpu limit smarterclayton 1
82 Downward API volume should provide container's cpu request krousey 1
83 Downward API volume should provide container's memory limit david-mcmahon 1
84 Downward API volume should provide container's memory request mikedanese 1
85 Downward API volume should provide labels and annotations files Downward API volume should provide labels and annotations files nhlfr 0
86 Downward API volume should provide podname as non-root with fsgroup Downward API volume should provide podname as non-root with fsgroup karlkfi 1
87 Downward API volume should provide podname only Downward API volume should provide podname only mwielgus 1
104 EmptyDir volumes should support r/w EmptyDir volumes should support r/w davidopp 1
105 EmptyDir volumes volume on default medium should have the correct mode EmptyDir volumes volume on default medium should have the correct mode girishkalele 1
106 EmptyDir volumes volume on tmpfs should have the correct mode EmptyDir volumes volume on tmpfs should have the correct mode mwielgus 1
107 EmptyDir volumes when FSGroup is specified files with FSGroup ownership should support (root,0644,tmpfs) justinsb 1
108 EmptyDir volumes when FSGroup is specified new files should be created with FSGroup ownership when container is non-root EmptyDir volumes when FSGroup is specified new files should be created with FSGroup ownership when container is non-root brendandburns 1
109 EmptyDir volumes when FSGroup is specified new files should be created with FSGroup ownership when container is root EmptyDir volumes when FSGroup is specified new files should be created with FSGroup ownership when container is root childsb 1
110 EmptyDir volumes when FSGroup is specified volume on default medium should have the correct mode using FSGroup EmptyDir volumes when FSGroup is specified volume on default medium should have the correct mode using FSGroup ArtfulCoder 1
111 EmptyDir volumes when FSGroup is specified volume on tmpfs should have the correct mode using FSGroup EmptyDir volumes when FSGroup is specified volume on tmpfs should have the correct mode using FSGroup timothysc 1
112 EmptyDir wrapper volumes should becomes running EmptyDir wrapper volumes should becomes running deads2k 1
Etcd failure should recover from network partition with master justinsb 1
113 Etcd failure should recover from SIGKILL Etcd failure should recover from SIGKILL pmorie 1
114 Etcd failure should recover from network partition with master justinsb 1
115 Events should be sent by kubelets and the scheduler about pods scheduling and running Events should be sent by kubelets and the scheduler about pods scheduling and running zmerlynn 1
116 Examples e2e Cassandra should create and scale cassandra Examples e2e Cassandra should create and scale cassandra bgrant0607 1
117 Examples e2e Celery-RabbitMQ should create and stop celery+rabbitmq servers Examples e2e Celery-RabbitMQ should create and stop celery+rabbitmq servers apelisse 1
125 Examples e2e Spark should start spark master, driver and workers Examples e2e Spark should start spark master, driver and workers maisem 1
126 Examples e2e Storm should create and stop Zookeeper, Nimbus and Storm worker servers Examples e2e Storm should create and stop Zookeeper, Nimbus and Storm worker servers mwielgus 1
127 Federated Services DNS non-local federated service missing local service should never find DNS entries for a missing local service Federated Services DNS non-local federated service missing local service should never find DNS entries for a missing local service mml 0
128 Garbage collector should handle the creation of 1000 pods Federated Services DNS non-local federated service should be able to discover a non-local federated service wonderfly jlowdermilk 1
129 Federated Services DNS should be able to discover a federated service derekwaynecarr 1
130 Federated Services Service creation should create matching services in underlying clusters jbeda 1
131 Federated Services Service creation should succeed rmmh 1
132 Federation apiserver Cluster objects should be created and deleted successfully ghodss 1
133 Federation apiserver should allow creation of cluster api objects mtaufen 1
134 GCE L7 LoadBalancer Controller should create GCE L7 loadbalancers and verify Ingress GCE L7 LoadBalancer Controller should create GCE L7 loadbalancers and verify Ingress bprashanth 0
135 GKE local SSD should write and read from node local SSD fabioy 0
136 GKE node pools should create a cluster with multiple node pools kargakis 1
137 Garbage collector should handle the creation of 1000 pods xiang90 1
138 Generated release_1_2 clientset should create pods, delete pods, watch pods Generated release_1_2 clientset should create pods, delete pods, watch pods ncdc 1
139 Generated release_1_3 clientset should create pods, delete pods, watch pods 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
140 Hazelcast should create and scale hazelcast Hazelcast should create and scale hazelcast mikedanese 1
141 Horizontal pod autoscaling (scale resource: CPU) Deployment Should scale from 1 pod to 3 pods and from 3 to 5 jlowdermilk 1
142 Horizontal pod autoscaling (scale resource: CPU) Deployment Should scale from 1 pod to 3 pods and from 3 to 5 and verify decision stability 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
143 Horizontal pod autoscaling (scale resource: CPU) Deployment Should scale from 5 pods to 3 pods and from 3 to 1 bgrant0607 1
144 Horizontal pod autoscaling (scale resource: CPU) Deployment Should scale from 5 pods to 3 pods and from 3 to 1 and verify decision stability 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
145 Horizontal pod autoscaling (scale resource: CPU) ReplicaSet Should scale from 1 pod to 3 pods and from 3 to 5 ghodss 1
146 Horizontal pod autoscaling (scale resource: CPU) ReplicaSet Should scale from 1 pod to 3 pods and from 3 to 5 and verify decision stability 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
147 Horizontal pod autoscaling (scale resource: CPU) ReplicaSet Should scale from 5 pods to 3 pods and from 3 to 1 davidopp 1
148 Horizontal pod autoscaling (scale resource: CPU) ReplicaSet Should scale from 5 pods to 3 pods and from 3 to 1 and verify decision stability 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
149 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
150 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
151 Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 1 pod to 2 pods Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 1 pod to 2 pods jszczepkowski 0
152 Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 2 pods to 1 pod Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 2 pods to 1 pod jszczepkowski 0
153 Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 2 pods to 1 pod using HPA version v1 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
154 Horizontal pod autoscaling should scale from 1 pod to 3 pods and from 3 to 5 (scale resource: CPU) Horizontal pod autoscaling should scale from 1 pod to 3 pods and from 3 to 5 (scale resource: CPU) jszczepkowski 0
155 Horizontal pod autoscaling should scale from 5 pods to 3 pods and from 3 to 1 (scale resource: CPU) Horizontal pod autoscaling should scale from 5 pods to 3 pods and from 3 to 1 (scale resource: CPU) jszczepkowski 0
156 hostDir should give a volume the correct mode Image Container Conformance Test image conformance blackbox test when testing image that does not exist should ignore pull failures bgrant0607 jsafrane 1
157 hostDir should support r/w on tmpfs Image Container Conformance Test image conformance blackbox test when testing images that exist It should present successfully erictune yujuhong 0 1
158 hostPath should give a volume the correct mode Image Container Conformance Test image conformance blackbox test when testing images that exist should list pulled images roberthbailey maisem 1
hostPath should support r/w roberthbailey 1
hostPath should support subPath krousey 1
159 Initial Resources should set initial resources based on historical data Initial Resources should set initial resources based on historical data piosz 0
160 Job should delete a job Job should delete a job soltysh 0
161 Job should fail a job Job should fail a job soltysh 0
166 Job should scale a job down Job should scale a job down soltysh 0
167 Job should scale a job up Job should scale a job up soltysh 0
168 Job should stop a job Job should stop a job soltysh 0
169 Kibana Logging Instances Is Alive should check that the Kibana logging instance is alive swagiaal 0
170 KubeProxy should test kube-proxy vulpecula 1
171 Kubectl client Guestbook application should create and stop a working application pwittrock 0
172 Kubectl client Kubectl api-versions should check if v1 is in available api versions pwittrock 0
173 Kubectl client Kubectl apply should apply a new configuration to an existing RC pwittrock 0
174 Kubectl client Kubectl apply should reuse nodePort when apply to an existing SVC pwittrock 0
175 Kubectl client Kubectl cluster-info should check if Kubernetes master services is included in cluster-info pwittrock 0
176 Kubectl client Kubectl describe should check if kubectl describe prints relevant information for rc and pods pwittrock 0
177 Kubectl client Kubectl expose should create services for rc pwittrock 0
178 Kubectl client Kubectl label should update the label on a resource pwittrock 0
179 Kubectl client Kubectl logs should be able to retrieve and filter logs jlowdermilk 0
180 Kubectl client Kubectl patch should add annotations for pods in rc janetkuo 0
181 Kubectl client Kubectl rolling-update should support rolling-update to same image janetkuo 0
182 Kubectl client Kubectl run --rm job should create a job from an image, then delete the job soltysh 0
183 Kubectl client Kubectl run default should create an rc or deployment from an image janetkuo 0
184 Kubectl client Kubectl run deployment should create a deployment from an image janetkuo 0
185 Kubectl client Kubectl run job should create a job from an image when restart is Never soltysh 0
186 Kubectl client Kubectl run job should create a job from an image when restart is OnFailure soltysh 0
187 Kubectl client Kubectl run pod should create a pod from an image when restart is Never janetkuo 0
188 Kubectl client Kubectl run pod should create a pod from an image when restart is OnFailure janetkuo 0
189 Kubectl client Kubectl run rc should create an rc from an image janetkuo 0
190 Kubectl client Kubectl taint should update the taint on a node pwittrock 0
191 Kubectl client Kubectl version should check is all data is printed janetkuo 0
192 Kubectl client Proxy server should support --unix-socket=/path zmerlynn 1
193 Kubectl client Proxy server should support proxy with --port 0 ncdc 1
194 Kubectl client Simple pod should support exec ncdc 0
195 Kubectl client Simple pod should support exec through an HTTP proxy ncdc 0
196 Kubectl client Simple pod should support inline execution and attach ncdc 0
197 Kubectl client Simple pod should support port-forward ncdc 0
198 Kubectl client Update Demo should create and stop a replication controller sttts 0
199 Kubectl client Update Demo should do a rolling update of a replication controller sttts 0
200 Kubectl client Update Demo should scale a replication controller sttts 0
201 Kubelet Container Manager oom score adjusting when scheduling a busybox command that always fails in a pod should be possible to delete jbeda 1
202 Kubelet Container Manager oom score adjusting when scheduling a busybox command that always fails in a pod should have an error terminated reason vulpecula 1
203 Kubelet experimental resource usage tracking for 100 pods per node over 20m0s yujuhong 0
204 Kubelet experimental resource usage tracking over 30m0s with 50 pods per node. yujuhong 0
205 Kubelet experimental resource usage tracking resource tracking for 100 pods per node ghodss 0
206 Kubelet metrics api when querying /stats/summary it should report resource usage through the stats api fabioy 1
207 Kubelet regular resource usage tracking for 0 pods per node over 20m0s yujuhong 0
208 Kubelet regular resource usage tracking for 100 pods per node over 20m0s yujuhong 0
209 Kubelet regular resource usage tracking for 35 pods per node over 20m0s yujuhong 0
210 Kubelet regular resource usage tracking over 30m0s with 0 pods per node. yujuhong 0
211 Kubelet regular resource usage tracking over 30m0s with 35 pods per node. yujuhong 0
212 Kubelet regular resource usage tracking resource tracking for 0 pods per node pmorie 1
213 Kubelet regular resource usage tracking resource tracking for 100 pods per node justinsb 1
214 Kubelet regular resource usage tracking resource tracking for 35 pods per node madhusudancs 1
215 Kubelet when scheduling a busybox command in a pod it should print the output to logs ixdy 1
216 Kubelet when scheduling a read only busybox container it should not write to root filesystem timothysc 1
217 KubeletManagedEtcHosts should test kubelet managed /etc/hosts file ArtfulCoder 1
218 Kubernetes Dashboard should check that the kubernetes-dashboard instance is alive wonderfly 0
219 LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied. cjcullen 1
220 Liveness liveness pods should be automatically restarted andyzheng0831 1
221 Load capacity should be able to handle 3 pods per node gmarek 0
222 Load capacity should be able to handle 30 pods per node wojtek-t 0
223 Loadbalancing: L7 GCE shoud create ingress with given static-ip vulpecula 1
224 Loadbalancing: L7 GCE should conform to Ingress spec andyzheng0831 1
225 MasterCerts should have all expected certs on the master apelisse 1
226 MaxPods Validates MaxPods limit number of pods that are allowed to run. gmarek 0
227 Mesos applies slave attributes as labels justinsb 1
228 Mesos schedules pods annotated with roles on correct slaves timstclair 1
229 Mesos starts static pods on every node in the mesos cluster lavalamp 1
230 MetricsGrabber should grab all metrics from API server. gmarek 0
231 MetricsGrabber should grab all metrics from a ControllerManager. gmarek 0
232 MetricsGrabber should grab all metrics from a Kubelet. gmarek 0
233 MetricsGrabber should grab all metrics from a Scheduler. gmarek 0
234 MirrorPod when create a mirror pod should be recreated when mirror pod forcibly deleted roberthbailey 1
235 MirrorPod when create a mirror pod should be recreated when mirror pod gracefully deleted justinsb 1
236 MirrorPod when create a mirror pod should be updated when static pod updated saad-ali 1
237 Monitoring should verify monitoring pods and all cluster nodes are available on influxdb using heapster. piosz 0
238 Namespaces Delete 90 percent of 100 namespace in 150 seconds caesarxuchao 1
239 Namespaces Delete ALL of 100 namespace in 150 seconds luxas 1
240 Namespaces should always delete fast (ALL of 100 namespaces in 150 seconds) rmmh 1
241 Namespaces should delete fast enough (90 percent of 100 namespaces in 150 seconds) kevin-wangzefeng 1
242 Namespaces should ensure that all pods are removed when a namespace is deleted. xiang90 1
243 Namespaces should ensure that all services are removed when a namespace is deleted. pmorie 1
244 Networking Granular Checks should function for pod communication between nodes freehan 0
245 Networking Granular Checks should function for pod communication on a single node freehan 0
246 Networking IPerf should transfer ~ 1GB onto the service endpoint 1 servers (maximum of 1 clients) ghodss 1
247 Networking should function for intra-pod communication sttts 0
248 Networking should provide Internet connection for containers sttts 0
249 Networking should provide unchanging, static URL paths for kubernetes api services freehan 0
250 Networking should provide unchanging, static URL paths for kubernetes api services. madhusudancs 1
251 NodeOutOfDisk runs out of disk space vishh 0
252 NodeProblemDetector KernelMonitor should generate node condition and events for corresponding errors Random-Liu 0
253 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
254 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
255 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
256 Nodes Resize should be able to add nodes piosz 1
257 Nodes Resize should be able to delete nodes zmerlynn 1
258 PersistentVolumes NFS volume can be created, bound, retrieved, unbound, and used by a pod jsafrane 0
259 PersistentVolumes should create a PersistentVolume, Claim, and a client Pod that will test the read/write access of the volume ArtfulCoder 1
260 Pet Store should scale to persist a nominal number ( 50 ) of transactions in 1m0s seconds timstclair 1
261 PetSet Basic PetSet functionality should handle healthy pet restarts during scale kevin-wangzefeng 1
262 PetSet Basic PetSet functionality should provide basic identity girishkalele 1
263 PetSet Deploy clustered applications should creating a working mysql cluster piosz 1
264 PetSet Deploy clustered applications should creating a working redis cluster mtaufen 1
265 PetSet Deploy clustered applications should creating a working zookeeper cluster rmmh 1
266 Pod Disks Should schedule a pod w/ a RW PD, gracefully remove it, then schedule it on another host alex-mohr 1
267 Pod Disks Should schedule a pod w/ a readonly PD on two hosts, then remove both gracefully. ghodss 1
268 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
269 Pod Disks should schedule a pod w/ a RW PD, remove it, then schedule it on another host saad-ali 0
270 Pod Disks should schedule a pod w/ a RW PD, ungracefully remove it, then schedule it on another host mml 1
271 Pod Disks should schedule a pod w/ a readonly PD on two hosts, then remove both ungracefully. kargakis 1
272 Pod Disks should schedule a pod w/ a readonly PD on two hosts, then remove both. saad-ali 0
273 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
274 Pods should *not* be restarted with a /healthz http liveness probe cjcullen 1
275 Pods should *not* be restarted with a docker exec "cat /tmp/health" liveness probe vishh 0
276 Pods should allow activeDeadlineSeconds to be updated derekwaynecarr 0
277 Pods should be restarted with a /healthz http liveness probe girishkalele 1
278 Pods should be restarted with a docker exec "cat /tmp/health" liveness probe bgrant0607 1
279 Pods should be schedule with cpu and memory limits vishh 0
280 Pods should be submitted and removed davidopp 1
281 Pods should be updated derekwaynecarr 1
282 Pods should cap back-off at MaxContainerBackOff maisem 1
283 Pods should contain environment variables for services jlowdermilk 1
284 Pods should get a host IP xiang90 1
285 Pods should have monotonically increasing restart count Random-Liu 1
286 Pods should have their auto-restart back-off timer reset on image update mikedanese 1
287 Pods should invoke init containers on a RestartAlways pod cjcullen 1
288 Pods should invoke init containers on a RestartNever pod justinsb 1
289 Pods should not start app containers and fail the pod if init containers fail on a RestartNever pod maisem 0
290 Pods should not start app containers if init containers fail on a RestartAlways pod david-mcmahon 1
291 Pods should support remote command execution over websockets madhusudancs 1
292 Pods should support retrieving logs from the container over websockets vishh 0
293 Port forwarding With a server that expects a client request should support a client that connects, sends data, and disconnects sttts 0
294 Port forwarding With a server that expects a client request should support a client that connects, sends no data, and disconnects sttts 0
295 Port forwarding With a server that expects no client request should support a client that connects, sends no data, and disconnects sttts 0
296 PreStop should call prestop when killing a pod ncdc 1
297 PrivilegedPod should test privileged pod vishh 0
298 Probing container with readiness probe should not be ready before initial delay and never restart smarterclayton 1
299 Probing container with readiness probe that fails should never be ready and never restart mtaufen 1
300 Proxy version v1 should proxy logs on node girishkalele 1
301 Proxy version v1 should proxy logs on node using proxy subresource karlkfi 1
302 Proxy version v1 should proxy logs on node with explicit kubelet port mwielgus 1
303 Proxy version v1 should proxy logs on node with explicit kubelet port using proxy subresource bgrant0607 1
304 Proxy version v1 should proxy through a service and a pod mml 1
305 Proxy version v1 should proxy to cadvisor Random-Liu 1
306 Proxy version v1 should proxy to cadvisor using proxy subresource deads2k 1
307 Reboot each node by dropping all inbound packets for a while and ensure they function afterwards quinton-hoole 0
308 Reboot each node by dropping all outbound packets for a while and ensure they function afterwards quinton-hoole 0
309 Reboot each node by ordering clean reboot and ensure they function upon restart quinton-hoole 0
310 Reboot each node by ordering unclean reboot and ensure they function upon restart quinton-hoole 0
311 Reboot each node by switching off the network interface and ensure they function upon switch on quinton-hoole 0
312 Reboot each node by triggering kernel panic and ensure they function upon restart quinton-hoole 0
313 Redis should create and stop redis servers timstclair 1
314 ReplicaSet should serve a basic image on each replica with a private image pmorie 1
315 ReplicaSet should serve a basic image on each replica with a public image krousey 0
316 ReplicationController should serve a basic image on each replica with a private image jbeda 1
317 ReplicationController should serve a basic image on each replica with a public image a-robinson 1
318 Resource usage of system containers should not exceed expected amount. ncdc 1
319 ResourceQuota should create a ResourceQuota and capture the life of a configMap. david-mcmahon 1
320 ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim. bgrant0607 1
321 ResourceQuota should create a ResourceQuota and capture the life of a pod. pmorie 1
322 ResourceQuota should create a ResourceQuota and capture the life of a replication controller. jdef 1
323 ResourceQuota should create a ResourceQuota and capture the life of a secret. ncdc 1
324 ResourceQuota should create a ResourceQuota and capture the life of a service. timstclair 1
325 ResourceQuota should create a ResourceQuota and ensure its status is promptly calculated. krousey 1
326 ResourceQuota should verify ResourceQuota with best effort scope. mml 1
327 ResourceQuota should verify ResourceQuota with terminating scopes. ncdc 1
328 Restart should restart all nodes and ensure all nodes and pods recover andyzheng0831 1
329 RethinkDB should create and stop rethinkdb servers kargakis 1
330 SSH should SSH to all nodes and run commands quinton-hoole 0
331 Scale should be able to launch 500 pods, 10 per minion, in 25 rcs/thread. roberthbailey 1
332 Scale should be able to launch 500 pods, 10 per minion, in 5 rcs/thread. bgrant0607 1
333 SchedulerPredicates validates MaxPods limit number of pods that are allowed to run gmarek 0
334 SchedulerPredicates validates resource limits of pods that are allowed to run gmarek 0
335 SchedulerPredicates validates that Inter-pod-Affinity is respected if not matching hurf 1
336 SchedulerPredicates validates that InterPod Affinity and AntiAffinity is respected if matching girishkalele 1
337 SchedulerPredicates validates that InterPodAffinity is respected if matching kevin-wangzefeng 1
338 SchedulerPredicates validates that InterPodAffinity is respected if matching with multiple Affinities caesarxuchao 1
339 SchedulerPredicates validates that InterPodAntiAffinity is respected if matching 2 sttts 0
340 SchedulerPredicates validates that NodeAffinity is respected if not matching fgrzadkowski 0
341 SchedulerPredicates validates that NodeSelector is respected fgrzadkowski 0
342 SchedulerPredicates validates that NodeSelector is respected if matching gmarek 0
343 SchedulerPredicates validates that NodeSelector is respected if not matching gmarek 0
344 SchedulerPredicates validates that a pod with an invalid NodeAffinity is rejected deads2k 1
345 SchedulerPredicates validates that a pod with an invalid podAffinity is rejected because of the LabelSelectorRequirement is invalid smarterclayton 1
346 SchedulerPredicates validates that embedding the JSON NodeAffinity setting as a string in the annotation value work yifan-gu 1
347 SchedulerPredicates validates that embedding the JSON PodAffinity and PodAntiAffinity setting as a string in the annotation value work hurf 1
348 SchedulerPredicates validates that required NodeAffinity setting is respected if matching ArtfulCoder 1
349 SchedulerPredicates validates that taints-tolerations is respected if matching jlowdermilk 1
350 SchedulerPredicates validates that taints-tolerations is respected if not matching derekwaynecarr 1
351 Secret should create a pod that reads a secret luxas 1
352 Secrets should be consumable from pods Random-Liu 1
353 Secrets should be consumable from pods in env vars ArtfulCoder 1
354 Secrets should be consumable from pods in volume ghodss 1
355 Security Context should support container.SecurityContext.RunAsUser alex-mohr 1
356 Security Context should support pod.Spec.SecurityContext.RunAsUser bgrant0607 1
357 Security Context should support pod.Spec.SecurityContext.SupplementalGroups andyzheng0831 1
358 Security Context should support seccomp alpha docker/default annotation freehan 1
359 Security Context should support seccomp alpha unconfined annotation on the container childsb 1
360 Security Context should support seccomp alpha unconfined annotation on the pod krousey 1
361 Security Context should support seccomp default which is unconfined lavalamp 1
362 Security Context should support volume SELinux relabeling thockin 1
363 Security Context should support volume SELinux relabeling when using hostIPC alex-mohr 1
364 Security Context should support volume SELinux relabeling when using hostPID dchen1107 1
365 Service endpoints latency should not be very high cjcullen 1
366 ServiceAccounts should ensure a single API token exists liggitt 0
367 ServiceAccounts should mount an API token into pods liggitt 0
368 ServiceLoadBalancer should support simple GET on Ingress ips bprashanth 0
369 Services should be able to change the type and nodeport settings of a service bprashanth 0
370 Services should be able to change the type and ports of a service bprashanth 0
371 Services should be able to create a functioning NodePort service bprashanth 0
372 Services should be able to create a functioning external load balancer bprashanth 0
373 Services should be able to up and down services bprashanth 0
374 Services should check NodePort out-of-range bprashanth 0
375 Services should correctly serve identically named services in different namespaces on different external IP addresses bprashanth 0
376 Services should create endpoints for unready pods maisem 0
377 Services should prevent NodePort collisions bprashanth 0
378 Services should provide secure master service bprashanth 0
379 Services should release NodePorts on delete bprashanth 0
380 Services should release the load balancer when Type goes from LoadBalancer -> NodePort karlkfi 1
381 Services should serve a basic endpoint from pods bprashanth 0
382 Services should serve identically named services in different namespaces on different load-balancers davidopp 1
383 Services should serve multiport endpoints from pods bprashanth 0
384 Services should work after restarting apiserver bprashanth 0
385 Services should work after restarting kube-proxy bprashanth 0
386 Shell should pass tests for services.sh mtaufen 1
387 Skipped Cluster upgrade kube-push of master should maintain responsive services a-robinson 1
388 Skipped Cluster upgrade upgrade-cluster should maintain a functioning cluster smarterclayton 1
389 Skipped Cluster upgrade upgrade-master should maintain responsive services vulpecula 1
390 Spark should start spark master, driver and workers girishkalele 1
391 Storm should create and stop Zookeeper, Nimbus and Storm worker servers swagiaal 1
392 ThirdParty resources Simple Third Party creating/deleting thirdparty objects works luxas 1
393 Ubernetes Lite should spread the pods of a replication controller across zones quinton-hoole 0
394 Ubernetes Lite should spread the pods of a service across zones quinton-hoole 0
395 Upgrade cluster upgrade should maintain a functioning cluster girishkalele 1
396 Upgrade cluster upgrade should maintain responsive services david-mcmahon 1
397 Upgrade master upgrade should maintain responsive services mikedanese 1
398 Upgrade node upgrade should maintain a functioning cluster zmerlynn 1
399 Upgrade node upgrade should maintain responsive services childsb 1
400 V1Job should delete a job soltysh 0
401 V1Job should fail a job soltysh 0
402 V1Job should keep restarting failed pods soltysh 0
403 V1Job should run a job to completion when tasks sometimes fail and are locally restarted soltysh 0
404 V1Job should run a job to completion when tasks sometimes fail and are not locally restarted soltysh 0
405 V1Job should run a job to completion when tasks succeed soltysh 0
406 V1Job should scale a job down soltysh 0
407 V1Job should scale a job up soltysh 0
408 Variable Expansion should allow composing env vars into new env vars ghodss 1
409 Variable Expansion should allow substituting values in a container's args dchen1107 1
410 Variable Expansion should allow substituting values in a container's command mml 1
411 Volumes Ceph RBD should be mountable fabioy 1
412 Volumes CephFS should be mountable Q-Lee 1
413 Volumes Cinder should be mountable cjcullen 1
414 Volumes GlusterFS should be mountable eparis 1
415 Volumes NFS should be mountable andyzheng0831 1
416 Volumes PD should be mountable caesarxuchao 1
417 Volumes iSCSI should be mountable david-mcmahon 1
418 hostDir should give a volume the correct mode bgrant0607 1
419 hostDir should support r/w on tmpfs erictune 0
420 hostPath should give a volume the correct mode roberthbailey 1
421 hostPath should support r/w roberthbailey 1
422 hostPath should support subPath krousey 1
423 k8s.io/kubernetes/cluster/addons/dns/kube2sky k8s.io/kubernetes/cluster/addons/dns/kube2sky zmerlynn 1
424 k8s.io/kubernetes/cmd/genutils k8s.io/kubernetes/cmd/genutils rmmh 1
425 k8s.io/kubernetes/cmd/hyperkube k8s.io/kubernetes/cmd/hyperkube jbeda 0
440 k8s.io/kubernetes/contrib/mesos/cmd/km k8s.io/kubernetes/contrib/mesos/cmd/km brendandburns 1
441 k8s.io/kubernetes/contrib/mesos/pkg/archive k8s.io/kubernetes/contrib/mesos/pkg/archive kargakis 1
442 k8s.io/kubernetes/contrib/mesos/pkg/election k8s.io/kubernetes/contrib/mesos/pkg/election vulpecula 1
443 k8s.io/kubernetes/contrib/mesos/pkg/executor k8s.io/kubernetes/contrib/mesos/pkg/executor mhrgoog brendandburns 1
444 k8s.io/kubernetes/contrib/mesos/pkg/minion/tasks k8s.io/kubernetes/contrib/mesos/pkg/minion/tasks hurf 1
445 k8s.io/kubernetes/contrib/mesos/pkg/node k8s.io/kubernetes/contrib/mesos/pkg/node jdef 1
446 k8s.io/kubernetes/contrib/mesos/pkg/offers k8s.io/kubernetes/contrib/mesos/pkg/offers david-mcmahon 1
456 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/constraint k8s.io/kubernetes/contrib/mesos/pkg/scheduler/constraint dchen1107 1
457 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/executorinfo k8s.io/kubernetes/contrib/mesos/pkg/scheduler/executorinfo luxas 1
458 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/integration k8s.io/kubernetes/contrib/mesos/pkg/scheduler/integration yifan-gu 1
459 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask mhrgoog dchen1107 1
460 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask/hostport k8s.io/kubernetes/contrib/mesos/pkg/scheduler/podtask/hostport mml 1
461 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/resources k8s.io/kubernetes/contrib/mesos/pkg/scheduler/resources ixdy 1
462 k8s.io/kubernetes/contrib/mesos/pkg/scheduler/service k8s.io/kubernetes/contrib/mesos/pkg/scheduler/service madhusudancs 1
467 k8s.io/kubernetes/examples/apiserver k8s.io/kubernetes/examples/apiserver nikhiljindal 0
468 k8s.io/kubernetes/federation/apis/federation/install k8s.io/kubernetes/federation/apis/federation/install nikhiljindal 0
469 k8s.io/kubernetes/federation/apis/federation/validation k8s.io/kubernetes/federation/apis/federation/validation nikhiljindal 0
470 k8s.io/kubernetes/federation/cmd/federated-apiserver/app k8s.io/kubernetes/federation/cmd/federation-apiserver/app nikhiljindal dchen1107 0 1
471 k8s.io/kubernetes/federation/pkg/dnsprovider/providers/aws/route53 cjcullen 1
472 k8s.io/kubernetes/federation/pkg/dnsprovider/providers/google/clouddns jsafrane 1
473 k8s.io/kubernetes/federation/pkg/federation-controller/cluster k8s.io/kubernetes/federation/pkg/federation-controller/cluster nikhiljindal 0
474 k8s.io/kubernetes/federation/pkg/federation-controller/service pmorie 1
475 k8s.io/kubernetes/federation/registry/cluster k8s.io/kubernetes/federation/registry/cluster nikhiljindal 0
476 k8s.io/kubernetes/federation/registry/cluster/etcd k8s.io/kubernetes/federation/registry/cluster/etcd nikhiljindal 0
477 k8s.io/kubernetes/hack/cmd/teststale k8s.io/kubernetes/hack/cmd/teststale mhrgoog thockin 1
478 k8s.io/kubernetes/pkg/admission k8s.io/kubernetes/pkg/admission dchen1107 1
479 k8s.io/kubernetes/pkg/api k8s.io/kubernetes/pkg/api Q-Lee 1
480 k8s.io/kubernetes/pkg/api/endpoints k8s.io/kubernetes/pkg/api/endpoints swagiaal 1
486 k8s.io/kubernetes/pkg/api/resource k8s.io/kubernetes/pkg/api/resource smarterclayton 1
487 k8s.io/kubernetes/pkg/api/rest k8s.io/kubernetes/pkg/api/rest ixdy 1
488 k8s.io/kubernetes/pkg/api/service k8s.io/kubernetes/pkg/api/service spxtr 1
489 k8s.io/kubernetes/pkg/api/testapi k8s.io/kubernetes/pkg/api/testapi wonderfly caesarxuchao 1
490 k8s.io/kubernetes/pkg/api/unversioned k8s.io/kubernetes/pkg/api/unversioned kevin-wangzefeng 1
491 k8s.io/kubernetes/pkg/api/unversioned/validation k8s.io/kubernetes/pkg/api/unversioned/validation brendandburns 1
492 k8s.io/kubernetes/pkg/api/util k8s.io/kubernetes/pkg/api/util ghodss 1
498 k8s.io/kubernetes/pkg/apis/authorization/validation k8s.io/kubernetes/pkg/apis/authorization/validation erictune 0
499 k8s.io/kubernetes/pkg/apis/autoscaling/validation k8s.io/kubernetes/pkg/apis/autoscaling/validation Random-Liu 1
500 k8s.io/kubernetes/pkg/apis/batch/validation k8s.io/kubernetes/pkg/apis/batch/validation erictune 0
501 k8s.io/kubernetes/pkg/apis/certificates/install zmerlynn 1
502 k8s.io/kubernetes/pkg/apis/componentconfig k8s.io/kubernetes/pkg/apis/componentconfig jbeda 1
503 k8s.io/kubernetes/pkg/apis/componentconfig/install k8s.io/kubernetes/pkg/apis/componentconfig/install pmorie 1
504 k8s.io/kubernetes/pkg/apis/extensions k8s.io/kubernetes/pkg/apis/extensions jbeda 1
506 k8s.io/kubernetes/pkg/apis/extensions/v1beta1 k8s.io/kubernetes/pkg/apis/extensions/v1beta1 madhusudancs 1
507 k8s.io/kubernetes/pkg/apis/extensions/validation k8s.io/kubernetes/pkg/apis/extensions/validation Random-Liu 1
508 k8s.io/kubernetes/pkg/apis/policy/validation k8s.io/kubernetes/pkg/apis/policy/validation deads2k 1
509 k8s.io/kubernetes/pkg/apis/rbac/install ixdy 1
510 k8s.io/kubernetes/pkg/apis/rbac/validation k8s.io/kubernetes/pkg/apis/rbac/validation erictune 0
511 k8s.io/kubernetes/pkg/apiserver k8s.io/kubernetes/pkg/apiserver nikhiljindal 0
512 k8s.io/kubernetes/pkg/auth/authenticator/bearertoken k8s.io/kubernetes/pkg/auth/authenticator/bearertoken liggitt 0
518 k8s.io/kubernetes/pkg/client/leaderelection k8s.io/kubernetes/pkg/client/leaderelection xiang90 1
519 k8s.io/kubernetes/pkg/client/record k8s.io/kubernetes/pkg/client/record karlkfi 1
520 k8s.io/kubernetes/pkg/client/restclient k8s.io/kubernetes/pkg/client/restclient kargakis 1
521 k8s.io/kubernetes/pkg/client/testing/core maisem 1
522 k8s.io/kubernetes/pkg/client/transport k8s.io/kubernetes/pkg/client/transport eparis 1
523 k8s.io/kubernetes/pkg/client/typed/discovery k8s.io/kubernetes/pkg/client/typed/discovery ihmccreery fabioy 1
524 k8s.io/kubernetes/pkg/client/typed/dynamic k8s.io/kubernetes/pkg/client/typed/dynamic luxas 1
525 k8s.io/kubernetes/pkg/client/unversioned k8s.io/kubernetes/pkg/client/unversioned justinsb 1
526 k8s.io/kubernetes/pkg/client/unversioned/auth k8s.io/kubernetes/pkg/client/unversioned/auth swagiaal 1
527 k8s.io/kubernetes/pkg/client/unversioned/clientcmd k8s.io/kubernetes/pkg/client/unversioned/clientcmd yifan-gu 1
528 k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api mhrgoog thockin 1
529 k8s.io/kubernetes/pkg/client/unversioned/portforward k8s.io/kubernetes/pkg/client/unversioned/portforward lavalamp 1
530 k8s.io/kubernetes/pkg/client/unversioned/remotecommand k8s.io/kubernetes/pkg/client/unversioned/remotecommand andyzheng0831 1
531 k8s.io/kubernetes/pkg/client/unversioned/testclient k8s.io/kubernetes/pkg/client/unversioned/testclient brendandburns 1
541 k8s.io/kubernetes/pkg/controller/daemon k8s.io/kubernetes/pkg/controller/daemon Q-Lee 1
542 k8s.io/kubernetes/pkg/controller/deployment k8s.io/kubernetes/pkg/controller/deployment asalkeld 0
543 k8s.io/kubernetes/pkg/controller/endpoint k8s.io/kubernetes/pkg/controller/endpoint Random-Liu 1
544 k8s.io/kubernetes/pkg/controller/framework k8s.io/kubernetes/pkg/controller/framework mhrgoog smarterclayton 1
545 k8s.io/kubernetes/pkg/controller/garbagecollector k8s.io/kubernetes/pkg/controller/garbagecollector rmmh 1
546 k8s.io/kubernetes/pkg/controller/gc k8s.io/kubernetes/pkg/controller/gc jdef 1
547 k8s.io/kubernetes/pkg/controller/job k8s.io/kubernetes/pkg/controller/job soltysh 0
548 k8s.io/kubernetes/pkg/controller/namespace k8s.io/kubernetes/pkg/controller/namespace ihmccreery karlkfi 1
549 k8s.io/kubernetes/pkg/controller/node k8s.io/kubernetes/pkg/controller/node gmarek 0
550 k8s.io/kubernetes/pkg/controller/persistentvolume k8s.io/kubernetes/pkg/controller/persistentvolume jsafrane 0
551 k8s.io/kubernetes/pkg/controller/petset k8s.io/kubernetes/pkg/controller/petset david-mcmahon 1
552 k8s.io/kubernetes/pkg/controller/podautoscaler k8s.io/kubernetes/pkg/controller/podautoscaler piosz 0
553 k8s.io/kubernetes/pkg/controller/podautoscaler/metrics k8s.io/kubernetes/pkg/controller/podautoscaler/metrics piosz 0
554 k8s.io/kubernetes/pkg/controller/podgc jdef 1
555 k8s.io/kubernetes/pkg/controller/replicaset k8s.io/kubernetes/pkg/controller/replicaset fgrzadkowski 0
556 k8s.io/kubernetes/pkg/controller/replication k8s.io/kubernetes/pkg/controller/replication fgrzadkowski 0
557 k8s.io/kubernetes/pkg/controller/resourcequota k8s.io/kubernetes/pkg/controller/resourcequota ghodss 1
558 k8s.io/kubernetes/pkg/controller/route k8s.io/kubernetes/pkg/controller/route gmarek 0
559 k8s.io/kubernetes/pkg/controller/service k8s.io/kubernetes/pkg/controller/service asalkeld 0
560 k8s.io/kubernetes/pkg/controller/serviceaccount k8s.io/kubernetes/pkg/controller/serviceaccount liggitt 0
561 k8s.io/kubernetes/pkg/controller/volume zmerlynn 1
562 k8s.io/kubernetes/pkg/controller/volume/attachdetach luxas 1
563 k8s.io/kubernetes/pkg/controller/volume/attachdetach/cache hurf 1
564 k8s.io/kubernetes/pkg/controller/volume/attachdetach/reconciler jsafrane 1
565 k8s.io/kubernetes/pkg/controller/volume/cache k8s.io/kubernetes/pkg/controller/volume/cache saad-ali 0
566 k8s.io/kubernetes/pkg/controller/volume/persistentvolume apelisse 1
567 k8s.io/kubernetes/pkg/controller/volume/reconciler xiang90 1
568 k8s.io/kubernetes/pkg/conversion k8s.io/kubernetes/pkg/conversion swagiaal 1
569 k8s.io/kubernetes/pkg/conversion/queryparams k8s.io/kubernetes/pkg/conversion/queryparams caesarxuchao 1
570 k8s.io/kubernetes/pkg/credentialprovider k8s.io/kubernetes/pkg/credentialprovider justinsb 1
576 k8s.io/kubernetes/pkg/genericapiserver k8s.io/kubernetes/pkg/genericapiserver nikhiljindal 0
577 k8s.io/kubernetes/pkg/healthz k8s.io/kubernetes/pkg/healthz thockin 1
578 k8s.io/kubernetes/pkg/httplog k8s.io/kubernetes/pkg/httplog mtaufen 1
579 k8s.io/kubernetes/pkg/kubectl k8s.io/kubernetes/pkg/kubectl ihmccreery madhusudancs 1
580 k8s.io/kubernetes/pkg/kubectl/cmd k8s.io/kubernetes/pkg/kubectl/cmd wonderfly rmmh 1
581 k8s.io/kubernetes/pkg/kubectl/cmd/config k8s.io/kubernetes/pkg/kubectl/cmd/config asalkeld 0
582 k8s.io/kubernetes/pkg/kubectl/cmd/util k8s.io/kubernetes/pkg/kubectl/cmd/util asalkeld 0
583 k8s.io/kubernetes/pkg/kubectl/cmd/util/editor k8s.io/kubernetes/pkg/kubectl/cmd/util/editor jdef 1
597 k8s.io/kubernetes/pkg/kubelet/network/cni k8s.io/kubernetes/pkg/kubelet/network/cni freehan 0
598 k8s.io/kubernetes/pkg/kubelet/network/exec k8s.io/kubernetes/pkg/kubelet/network/exec freehan 0
599 k8s.io/kubernetes/pkg/kubelet/network/hairpin k8s.io/kubernetes/pkg/kubelet/network/hairpin freehan 0
600 k8s.io/kubernetes/pkg/kubelet/network/hostport erictune 1
601 k8s.io/kubernetes/pkg/kubelet/network/kubenet k8s.io/kubernetes/pkg/kubelet/network/kubenet freehan 0
602 k8s.io/kubernetes/pkg/kubelet/pleg k8s.io/kubernetes/pkg/kubelet/pleg yujuhong 0
603 k8s.io/kubernetes/pkg/kubelet/pod k8s.io/kubernetes/pkg/kubelet/pod alex-mohr 1
613 k8s.io/kubernetes/pkg/kubelet/util/cache k8s.io/kubernetes/pkg/kubelet/util/cache timothysc 1
614 k8s.io/kubernetes/pkg/kubelet/util/format k8s.io/kubernetes/pkg/kubelet/util/format a-robinson 1
615 k8s.io/kubernetes/pkg/kubelet/util/queue k8s.io/kubernetes/pkg/kubelet/util/queue yujuhong 0
616 k8s.io/kubernetes/pkg/kubelet/volume/cache swagiaal 1
617 k8s.io/kubernetes/pkg/kubelet/volume/reconciler jdef 1
618 k8s.io/kubernetes/pkg/kubelet/volumemanager/cache swagiaal 1
619 k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler timstclair 1
620 k8s.io/kubernetes/pkg/labels k8s.io/kubernetes/pkg/labels ixdy 1
621 k8s.io/kubernetes/pkg/master k8s.io/kubernetes/pkg/master fabioy 1
622 k8s.io/kubernetes/pkg/probe/exec k8s.io/kubernetes/pkg/probe/exec bgrant0607 1
623 k8s.io/kubernetes/pkg/probe/http k8s.io/kubernetes/pkg/probe/http david-mcmahon 1
624 k8s.io/kubernetes/pkg/probe/tcp k8s.io/kubernetes/pkg/probe/tcp mtaufen 1
625 k8s.io/kubernetes/pkg/proxy/config k8s.io/kubernetes/pkg/proxy/config wonderfly ixdy 1
626 k8s.io/kubernetes/pkg/proxy/iptables k8s.io/kubernetes/pkg/proxy/iptables freehan 0
627 k8s.io/kubernetes/pkg/proxy/userspace k8s.io/kubernetes/pkg/proxy/userspace luxas 1
628 k8s.io/kubernetes/pkg/quota k8s.io/kubernetes/pkg/quota ihmccreery sttts 1
629 k8s.io/kubernetes/pkg/quota/evaluator/core yifan-gu 1
630 k8s.io/kubernetes/pkg/registry/componentstatus k8s.io/kubernetes/pkg/registry/componentstatus yifan-gu 1
631 k8s.io/kubernetes/pkg/registry/configmap k8s.io/kubernetes/pkg/registry/configmap timothysc 1
632 k8s.io/kubernetes/pkg/registry/configmap/etcd k8s.io/kubernetes/pkg/registry/configmap/etcd ihmccreery janetkuo 1
633 k8s.io/kubernetes/pkg/registry/controller k8s.io/kubernetes/pkg/registry/controller jdef 1
634 k8s.io/kubernetes/pkg/registry/controller/etcd k8s.io/kubernetes/pkg/registry/controller/etcd spxtr 1
635 k8s.io/kubernetes/pkg/registry/daemonset k8s.io/kubernetes/pkg/registry/daemonset a-robinson 1
636 k8s.io/kubernetes/pkg/registry/daemonset/etcd k8s.io/kubernetes/pkg/registry/daemonset/etcd pmorie 1
637 k8s.io/kubernetes/pkg/registry/deployment k8s.io/kubernetes/pkg/registry/deployment timothysc 1
638 k8s.io/kubernetes/pkg/registry/deployment/etcd k8s.io/kubernetes/pkg/registry/deployment/etcd ihmccreery swagiaal 1
639 k8s.io/kubernetes/pkg/registry/endpoint k8s.io/kubernetes/pkg/registry/endpoint smarterclayton 1
640 k8s.io/kubernetes/pkg/registry/endpoint/etcd k8s.io/kubernetes/pkg/registry/endpoint/etcd a-robinson 1
641 k8s.io/kubernetes/pkg/registry/event k8s.io/kubernetes/pkg/registry/event girishkalele 1
655 k8s.io/kubernetes/pkg/registry/limitrange/etcd k8s.io/kubernetes/pkg/registry/limitrange/etcd zmerlynn 1
656 k8s.io/kubernetes/pkg/registry/namespace k8s.io/kubernetes/pkg/registry/namespace roberthbailey 1
657 k8s.io/kubernetes/pkg/registry/namespace/etcd k8s.io/kubernetes/pkg/registry/namespace/etcd justinsb 1
658 k8s.io/kubernetes/pkg/registry/networkpolicy david-mcmahon 1
659 k8s.io/kubernetes/pkg/registry/networkpolicy/etcd xiang90 1
660 k8s.io/kubernetes/pkg/registry/node k8s.io/kubernetes/pkg/registry/node krousey 1
661 k8s.io/kubernetes/pkg/registry/node/etcd k8s.io/kubernetes/pkg/registry/node/etcd kevin-wangzefeng 1
662 k8s.io/kubernetes/pkg/registry/persistentvolume k8s.io/kubernetes/pkg/registry/persistentvolume kevin-wangzefeng 1
711 k8s.io/kubernetes/pkg/serviceaccount k8s.io/kubernetes/pkg/serviceaccount liggitt 0
712 k8s.io/kubernetes/pkg/ssh k8s.io/kubernetes/pkg/ssh jbeda 1
713 k8s.io/kubernetes/pkg/storage k8s.io/kubernetes/pkg/storage xiang90 0
714 k8s.io/kubernetes/pkg/storage/etcd k8s.io/kubernetes/pkg/storage/etcd mhrgoog eparis 1
715 k8s.io/kubernetes/pkg/storage/etcd/util k8s.io/kubernetes/pkg/storage/etcd/util xiang90 0
716 k8s.io/kubernetes/pkg/storage/etcd3 k8s.io/kubernetes/pkg/storage/etcd3 xiang90 0
717 k8s.io/kubernetes/pkg/util k8s.io/kubernetes/pkg/util jbeda 1
722 k8s.io/kubernetes/pkg/util/configz k8s.io/kubernetes/pkg/util/configz ixdy 1
723 k8s.io/kubernetes/pkg/util/dbus k8s.io/kubernetes/pkg/util/dbus roberthbailey 1
724 k8s.io/kubernetes/pkg/util/deployment k8s.io/kubernetes/pkg/util/deployment asalkeld 0
725 k8s.io/kubernetes/pkg/util/diff piosz 1
726 k8s.io/kubernetes/pkg/util/env k8s.io/kubernetes/pkg/util/env asalkeld 0
727 k8s.io/kubernetes/pkg/util/errors k8s.io/kubernetes/pkg/util/errors a-robinson 1
728 k8s.io/kubernetes/pkg/util/exec k8s.io/kubernetes/pkg/util/exec krousey 1
777 k8s.io/kubernetes/pkg/volume/flocker k8s.io/kubernetes/pkg/volume/flocker jbeda 1
778 k8s.io/kubernetes/pkg/volume/gce_pd k8s.io/kubernetes/pkg/volume/gce_pd saad-ali 0
779 k8s.io/kubernetes/pkg/volume/git_repo k8s.io/kubernetes/pkg/volume/git_repo davidopp 1
780 k8s.io/kubernetes/pkg/volume/glusterfs k8s.io/kubernetes/pkg/volume/glusterfs ihmccreery timstclair 1
781 k8s.io/kubernetes/pkg/volume/host_path k8s.io/kubernetes/pkg/volume/host_path jbeda 1
782 k8s.io/kubernetes/pkg/volume/iscsi k8s.io/kubernetes/pkg/volume/iscsi cjcullen 1
783 k8s.io/kubernetes/pkg/volume/nfs k8s.io/kubernetes/pkg/volume/nfs justinsb 1
813 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/oidc k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/oidc brendandburns 1
814 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/tokenfile k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/tokenfile liggitt 0
815 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/webhook k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/webhook ghodss 1
816 k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac hurf 1
817 k8s.io/kubernetes/plugin/pkg/auth/authorizer/webhook k8s.io/kubernetes/plugin/pkg/auth/authorizer/webhook hurf 1
818 k8s.io/kubernetes/plugin/pkg/client/auth/oidc k8s.io/kubernetes/plugin/pkg/client/auth/oidc cjcullen 1
819 k8s.io/kubernetes/plugin/pkg/scheduler k8s.io/kubernetes/plugin/pkg/scheduler fgrzadkowski 0
826 k8s.io/kubernetes/plugin/pkg/scheduler/factory k8s.io/kubernetes/plugin/pkg/scheduler/factory fgrzadkowski 0
827 k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache fgrzadkowski 0
828 k8s.io/kubernetes/test/integration k8s.io/kubernetes/test/integration lavalamp 1
k8s.io/kubernetes/test/integration TestServiceAccountAutoCreate swagiaal 0
829 k8s.io/kubernetes/third_party/forked/reflect k8s.io/kubernetes/third_party/forked/reflect yifan-gu 1
830 k8s.io/kubernetes/third_party/golang/expansion k8s.io/kubernetes/third_party/golang/expansion dchen1107 1
831 k8s.io/kubernetes/third_party/golang/go/ast k8s.io/kubernetes/third_party/golang/go/ast mml 1
836 k8s.io/kubernetes/third_party/golang/go/printer k8s.io/kubernetes/third_party/golang/go/printer madhusudancs 1
837 k8s.io/kubernetes/third_party/golang/go/scanner k8s.io/kubernetes/third_party/golang/go/scanner hurf 1
838 k8s.io/kubernetes/third_party/golang/go/token 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
839 kube-ui should check that the kube-ui instance is alive kube-ui should check that the kube-ui instance is alive fabioy 1
840 Kubectl client Guestbook application should create and stop a working application kubelet Clean up pods on node kubelet should be able to delete 10 pods per node in 1m0s. pwittrock yujuhong 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
841 persistentVolumes PersistentVolume 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