diff --git a/cmd/openshift-tests/upgrade.go b/cmd/openshift-tests/upgrade.go index 17fb38d5f251..d198e02c0484 100644 --- a/cmd/openshift-tests/upgrade.go +++ b/cmd/openshift-tests/upgrade.go @@ -24,7 +24,7 @@ var upgradeSuites = []*ginkgo.TestSuite{ Run all tests. `), Matches: func(name string) bool { - return strings.Contains(name, "[Feature:ClusterUpgrade]") && strings.Contains(name, "[Suite:openshift]") + return strings.Contains(name, "[Feature:ClusterUpgrade]") && !strings.Contains(name, "[Suite:k8s]") }, Init: func(opt map[string]string) error { return upgradeInitArguments(opt, func(string) bool { return true }) @@ -37,7 +37,7 @@ var upgradeSuites = []*ginkgo.TestSuite{ Run only the tests that verify the platform remains available. `), Matches: func(name string) bool { - return strings.Contains(name, "[Feature:ClusterUpgrade]") && strings.Contains(name, "[Suite:openshift]") + return strings.Contains(name, "[Feature:ClusterUpgrade]") && !strings.Contains(name, "[Suite:k8s]") }, Init: func(opt map[string]string) error { return upgradeInitArguments(opt, func(name string) bool { diff --git a/go.mod b/go.mod index 86d2f401c41d..e1bf6cc7cf08 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/openshift/origin -go 1.13 +go 1.15 require ( github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd @@ -420,10 +420,10 @@ replace ( k8s.io/api => k8s.io/api v0.19.0-rc.2 k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.19.0-rc.2 k8s.io/apimachinery => k8s.io/apimachinery v0.19.0-rc.2 - k8s.io/apiserver => github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20200925093421-31bf081b178d + k8s.io/apiserver => github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20200929205038-beb741bdf00a k8s.io/cli-runtime => k8s.io/cli-runtime v0.19.0-rc.2 - k8s.io/client-go => github.com/openshift/kubernetes/staging/src/k8s.io/client-go v0.0.0-20200925093421-31bf081b178d - k8s.io/cloud-provider => github.com/openshift/kubernetes/staging/src/k8s.io/cloud-provider v0.0.0-20200925093421-31bf081b178d + k8s.io/client-go => github.com/openshift/kubernetes/staging/src/k8s.io/client-go v0.0.0-20200929205038-beb741bdf00a + k8s.io/cloud-provider => github.com/openshift/kubernetes/staging/src/k8s.io/cloud-provider v0.0.0-20200929205038-beb741bdf00a k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.19.0-rc.2 k8s.io/code-generator => k8s.io/code-generator v0.19.0-rc.2 k8s.io/component-base => k8s.io/component-base v0.19.0-rc.2 @@ -432,14 +432,14 @@ replace ( k8s.io/gengo => k8s.io/gengo v0.0.0-20200114144118-36b2048a9120 k8s.io/heapster => k8s.io/heapster v1.2.0-beta.1 k8s.io/klog => k8s.io/klog v1.0.0 - k8s.io/kube-aggregator => github.com/openshift/kubernetes/staging/src/k8s.io/kube-aggregator v0.0.0-20200925093421-31bf081b178d + k8s.io/kube-aggregator => github.com/openshift/kubernetes/staging/src/k8s.io/kube-aggregator v0.0.0-20200929205038-beb741bdf00a k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.19.0-rc.2 k8s.io/kube-proxy => k8s.io/kube-proxy v0.19.0-rc.2 k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.19.0-rc.2 k8s.io/kubectl => k8s.io/kubectl v0.19.0-rc.2 k8s.io/kubelet => k8s.io/kubelet v0.19.0-rc.2 - k8s.io/kubernetes => github.com/openshift/kubernetes v1.20.0-alpha.0.0.20200925093421-31bf081b178d - k8s.io/legacy-cloud-providers => github.com/openshift/kubernetes/staging/src/k8s.io/legacy-cloud-providers v0.0.0-20200925093421-31bf081b178d + k8s.io/kubernetes => github.com/openshift/kubernetes v1.20.0-alpha.0.0.20200929205038-beb741bdf00a + k8s.io/legacy-cloud-providers => github.com/openshift/kubernetes/staging/src/k8s.io/legacy-cloud-providers v0.0.0-20200929205038-beb741bdf00a k8s.io/metrics => k8s.io/metrics v0.19.0-rc.2 k8s.io/repo-infra => k8s.io/repo-infra v0.0.1-alpha.1 k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.19.0-rc.2 diff --git a/go.sum b/go.sum index c25a7bdcbbad..e8bbf8e175a6 100644 --- a/go.sum +++ b/go.sum @@ -436,18 +436,18 @@ github.com/openshift/client-go v0.0.0-20200827190008-3062137373b5 h1:E6WhVL5p3rf github.com/openshift/client-go v0.0.0-20200827190008-3062137373b5/go.mod h1:5rGmrkQ8DJEUXA+AR3rEjfH+HFyg4/apY9iCQFgvPfE= github.com/openshift/golang-glog v0.0.0-20190322123450-3c92600d7533 h1:A5VovyRu3JFIPmC20HHrsOOny0PIdHuzDdNMULru48k= github.com/openshift/golang-glog v0.0.0-20190322123450-3c92600d7533/go.mod h1:3sa6LKKRDnR1xy4Kn8htvPwqIOVwXh8fIU3LRY22q3U= -github.com/openshift/kubernetes v1.20.0-alpha.0.0.20200925093421-31bf081b178d h1:5bdZLv31JO1LHi1fduTrzU+gmFks8NZ31EUnXh6NWpM= -github.com/openshift/kubernetes v1.20.0-alpha.0.0.20200925093421-31bf081b178d/go.mod h1:thZ+fVBomGpLqnFpgVP7zLoR1cZr5ceY0Ccrrw5DUPc= -github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20200925093421-31bf081b178d h1:vPofpZz2Xl0RMA+H9oAQWouGuBXeI2aduIqchEARIsc= -github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20200925093421-31bf081b178d/go.mod h1:wR/2WpnpEiQEhbGJyD7pRwxVsSEW4H3QKgvH4LBr97I= -github.com/openshift/kubernetes/staging/src/k8s.io/client-go v0.0.0-20200925093421-31bf081b178d h1:3XtryoLm1yQEYfIa4I49aUKLRFq/zGogY/ypQITe0DY= -github.com/openshift/kubernetes/staging/src/k8s.io/client-go v0.0.0-20200925093421-31bf081b178d/go.mod h1:PKE732z15ZBntzuIso4UituryF6ls1srirW354KG/ag= -github.com/openshift/kubernetes/staging/src/k8s.io/cloud-provider v0.0.0-20200925093421-31bf081b178d h1:vnZMnl7/B0borRk+6DSm/vUwfMu7Iw2+nNmZnUbIX3Q= -github.com/openshift/kubernetes/staging/src/k8s.io/cloud-provider v0.0.0-20200925093421-31bf081b178d/go.mod h1:xzTMREjOlgHSSvy4fYZPWLzPkYSn7Y0QmDpP2v3KQ24= -github.com/openshift/kubernetes/staging/src/k8s.io/kube-aggregator v0.0.0-20200925093421-31bf081b178d h1:vXnl91HSoBX06SJzL6u6VLQt/lVTJR/Mf+hdhA2C3ew= -github.com/openshift/kubernetes/staging/src/k8s.io/kube-aggregator v0.0.0-20200925093421-31bf081b178d/go.mod h1:DaF/5oFo8hXpqC477u574XitO+uLNInMmaSkNYJiDSU= -github.com/openshift/kubernetes/staging/src/k8s.io/legacy-cloud-providers v0.0.0-20200925093421-31bf081b178d h1:ViiDMLi5Je45l/mGojs3Y9PsMEF/a12GXlFMczttRjI= -github.com/openshift/kubernetes/staging/src/k8s.io/legacy-cloud-providers v0.0.0-20200925093421-31bf081b178d/go.mod h1:Jsv6Huoke+fYBJz8CGV1m3A1EL3tOzSvQKiC0O6ohTQ= +github.com/openshift/kubernetes v1.20.0-alpha.0.0.20200929205038-beb741bdf00a h1:t7+apc3GaSGAmdzvUURWL/erMftgeCmNqjQvMjmbHg4= +github.com/openshift/kubernetes v1.20.0-alpha.0.0.20200929205038-beb741bdf00a/go.mod h1:thZ+fVBomGpLqnFpgVP7zLoR1cZr5ceY0Ccrrw5DUPc= +github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20200929205038-beb741bdf00a h1:myKkOKIAaG437AzaYnP8K4CoeB5x+MBk2nOmaph+H8E= +github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20200929205038-beb741bdf00a/go.mod h1:wR/2WpnpEiQEhbGJyD7pRwxVsSEW4H3QKgvH4LBr97I= +github.com/openshift/kubernetes/staging/src/k8s.io/client-go v0.0.0-20200929205038-beb741bdf00a h1:3QlvpglbuEsybU85F1C5E0yx8KmZRnD3Ea/pWCxG4HE= +github.com/openshift/kubernetes/staging/src/k8s.io/client-go v0.0.0-20200929205038-beb741bdf00a/go.mod h1:PKE732z15ZBntzuIso4UituryF6ls1srirW354KG/ag= +github.com/openshift/kubernetes/staging/src/k8s.io/cloud-provider v0.0.0-20200929205038-beb741bdf00a h1:atR0SNfqNZPZzDRU+kmRJZC896NntRABTBhjX0pX/9g= +github.com/openshift/kubernetes/staging/src/k8s.io/cloud-provider v0.0.0-20200929205038-beb741bdf00a/go.mod h1:xzTMREjOlgHSSvy4fYZPWLzPkYSn7Y0QmDpP2v3KQ24= +github.com/openshift/kubernetes/staging/src/k8s.io/kube-aggregator v0.0.0-20200929205038-beb741bdf00a h1:ngsgvD8jd1pOV2RxY1sl7tK0gHXFt4QpHXCY9M67II0= +github.com/openshift/kubernetes/staging/src/k8s.io/kube-aggregator v0.0.0-20200929205038-beb741bdf00a/go.mod h1:DaF/5oFo8hXpqC477u574XitO+uLNInMmaSkNYJiDSU= +github.com/openshift/kubernetes/staging/src/k8s.io/legacy-cloud-providers v0.0.0-20200929205038-beb741bdf00a h1:GIi1a+Lx4K2KmfuB69oB7G/ECWJ3A56DYukoEV3xAI4= +github.com/openshift/kubernetes/staging/src/k8s.io/legacy-cloud-providers v0.0.0-20200929205038-beb741bdf00a/go.mod h1:Jsv6Huoke+fYBJz8CGV1m3A1EL3tOzSvQKiC0O6ohTQ= github.com/openshift/library-go v0.0.0-20200831114015-2ab0c61c15de/go.mod h1:6vwp+YhYOIlj8MpkQKkebTTSn2TuYyvgiAFQ206jIEQ= github.com/openshift/library-go v0.0.0-20200902112127-a4e32e339219 h1:dhz1PgLYnWYpfXad452f/5P0wMU6MZvOlPIkPRzK7ro= github.com/openshift/library-go v0.0.0-20200902112127-a4e32e339219/go.mod h1:6vwp+YhYOIlj8MpkQKkebTTSn2TuYyvgiAFQ206jIEQ= diff --git a/test/extended/util/annotate/generated/zz_generated.annotations.go b/test/extended/util/annotate/generated/zz_generated.annotations.go index e9405bccf3fa..ad49e88891e7 100644 --- a/test/extended/util/annotate/generated/zz_generated.annotations.go +++ b/test/extended/util/annotate/generated/zz_generated.annotations.go @@ -537,7 +537,7 @@ var annotations = map[string]string{ "[Top Level] [sig-api-machinery][Feature:APIServer][Late] kubelet terminates kube-apiserver gracefully": "kubelet terminates kube-apiserver gracefully [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-api-machinery][Feature:Audit] Basic audit should audit API calls": "should audit API calls [Disabled:SpecialConfig] [Suite:openshift]", + "[Top Level] [sig-api-machinery][Feature:Audit] Basic audit should audit API calls": "should audit API calls [Disabled:SpecialConfig]", "[Top Level] [sig-api-machinery][Feature:ClusterResourceQuota] Cluster resource quota should control resource limits across namespaces": "should control resource limits across namespaces [Suite:openshift/conformance/parallel]", @@ -719,7 +719,7 @@ var annotations = map[string]string{ "[Top Level] [sig-apps][Feature:DeploymentConfig] deploymentconfigs paused should disable actions on deployments": "should disable actions on deployments [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-apps][Feature:DeploymentConfig] deploymentconfigs reaper [Slow] should delete all failed deployer pods and hook pods": "should delete all failed deployer pods and hook pods [Suite:openshift]", + "[Top Level] [sig-apps][Feature:DeploymentConfig] deploymentconfigs reaper [Slow] should delete all failed deployer pods and hook pods": "should delete all failed deployer pods and hook pods", "[Top Level] [sig-apps][Feature:DeploymentConfig] deploymentconfigs rolled back should rollback to an older deployment": "should rollback to an older deployment [Suite:openshift/conformance/parallel]", @@ -785,7 +785,7 @@ var annotations = map[string]string{ "[Top Level] [sig-arch] Managed cluster should have operators on the cluster version": "have operators on the cluster version [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-arch] Managed cluster should recover when operator-owned objects are deleted [Disruptive]": "when operator-owned objects are deleted [Disruptive] [Serial] [Suite:openshift]", + "[Top Level] [sig-arch] Managed cluster should recover when operator-owned objects are deleted [Disruptive]": "when operator-owned objects are deleted [Disruptive] [Serial]", "[Top Level] [sig-arch] Managed cluster should should expose cluster services outside the cluster": "should expose cluster services outside the cluster [Suite:openshift/conformance/parallel]", @@ -793,7 +793,7 @@ var annotations = map[string]string{ "[Top Level] [sig-arch][Early] Managed cluster should start all core operators": "start all core operators [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-arch][Feature:ClusterUpgrade] Cluster should remain functional during upgrade [Disruptive]": "Cluster should remain functional during upgrade [Disruptive] [Serial] [Suite:openshift]", + "[Top Level] [sig-arch][Feature:ClusterUpgrade] Cluster should remain functional during upgrade [Disruptive]": "Cluster should remain functional during upgrade [Disruptive] [Serial]", "[Top Level] [sig-auth] Certificates API [Privileged:ClusterAdmin] should support CSR API operations [Conformance]": "should support CSR API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]", @@ -841,7 +841,7 @@ var annotations = map[string]string{ "[Top Level] [sig-auth][Feature:Authentication] TestFrontProxy should succeed": "should succeed [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-auth][Feature:BootstrapUser] The bootstrap user should successfully login with password decoded from kubeadmin secret [Disruptive]": "should successfully login with password decoded from kubeadmin secret [Disruptive] [Serial] [Suite:openshift]", + "[Top Level] [sig-auth][Feature:BootstrapUser] The bootstrap user should successfully login with password decoded from kubeadmin secret [Disruptive]": "should successfully login with password decoded from kubeadmin secret [Disruptive] [Serial]", "[Top Level] [sig-auth][Feature:HTPasswdAuth] HTPasswd IDP should successfully configure htpasswd and be responsive": "should successfully configure htpasswd and be responsive [Suite:openshift/conformance/parallel]", @@ -1109,179 +1109,179 @@ var annotations = map[string]string{ "[Top Level] [sig-builds][Feature:Builds] s2i build with a root user image should create a root build and pass with a privileged SCC": "should create a root build and pass with a privileged SCC [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config no ocm rollout Apply default proxy configuration to docker build pod through env vars": "Apply default proxy configuration to docker build pod through env vars [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config no ocm rollout Apply default proxy configuration to docker build pod through env vars": "Apply default proxy configuration to docker build pod through env vars", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config no ocm rollout Apply default proxy configuration to source build pod through env vars": "Apply default proxy configuration to source build pod through env vars [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config no ocm rollout Apply default proxy configuration to source build pod through env vars": "Apply default proxy configuration to source build pod through env vars", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config no ocm rollout Apply git proxy configuration to build pod": "Apply git proxy configuration to build pod [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config no ocm rollout Apply git proxy configuration to build pod": "Apply git proxy configuration to build pod", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply default image label configuration to build pod": "Apply default image label configuration to build pod [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply default image label configuration to build pod": "Apply default image label configuration to build pod", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply env configuration to build pod": "Apply env configuration to build pod [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply env configuration to build pod": "Apply env configuration to build pod", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply node selector configuration to build pod": "Apply node selector configuration to build pod [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply node selector configuration to build pod": "Apply node selector configuration to build pod", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply override image label configuration to build pod": "Apply override image label configuration to build pod [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply override image label configuration to build pod": "Apply override image label configuration to build pod", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply resource configuration to build pod": "Apply resource configuration to build pod [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply resource configuration to build pod": "Apply resource configuration to build pod", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply toleration override configuration to build pod": "Apply toleration override configuration to build pod [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration build config with ocm rollout Apply toleration override configuration to build pod": "Apply toleration override configuration to build pod", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration registries config context should allow registries to be blacklisted": "should allow registries to be blacklisted [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration registries config context should allow registries to be blacklisted": "should allow registries to be blacklisted", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration registries config context should allow registries to be whitelisted": "should allow registries to be whitelisted [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration registries config context should allow registries to be whitelisted": "should allow registries to be whitelisted", - "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration registries config context should default registry search to docker.io for image pulls": "should default registry search to docker.io for image pulls [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Serial][Slow][Disruptive] alter builds via cluster configuration registries config context should default registry search to docker.io for image pulls": "should default registry search to docker.io for image pulls", - "[Top Level] [sig-builds][Feature:Builds][Slow] Capabilities should be dropped for s2i builders s2i build with a rootable builder should not be able to switch to root with an assemble script": "should not be able to switch to root with an assemble script [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] Capabilities should be dropped for s2i builders s2i build with a rootable builder should not be able to switch to root with an assemble script": "should not be able to switch to root with an assemble script", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build should be able to start a build from Dockerfile with FROM reference to scratch": "should be able to start a build from Dockerfile with FROM reference to scratch [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build should be able to start a build from Dockerfile with FROM reference to scratch": "should be able to start a build from Dockerfile with FROM reference to scratch", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build should create a image via new-build and infer the origin tag": "should create a image via new-build and infer the origin tag [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build should create a image via new-build and infer the origin tag": "should create a image via new-build and infer the origin tag", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build should create a image via new-build": "should create a image via new-build [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build should create a image via new-build": "should create a image via new-build", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build testing build image with dockerfile contains a file path uses a variable in its name": "testing build image with dockerfile contains a file path uses a variable in its name [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build testing build image with dockerfile contains a file path uses a variable in its name": "testing build image with dockerfile contains a file path uses a variable in its name", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build testing build image with invalid dockerfile content": "testing build image with invalid dockerfile content [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have Dockerfile input being created from new-build testing build image with invalid dockerfile content": "testing build image with invalid dockerfile content", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source buildconfig with input source image and docker strategy should complete successfully and contain the expected file": "should complete successfully and contain the expected file [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source buildconfig with input source image and docker strategy should complete successfully and contain the expected file": "should complete successfully and contain the expected file", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source buildconfig with input source image and s2i strategy should complete successfully and contain the expected file": "should complete successfully and contain the expected file [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source buildconfig with input source image and s2i strategy should complete successfully and contain the expected file": "should complete successfully and contain the expected file", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source creating a build with an input source image and custom strategy should resolve the imagestream references and secrets": "should resolve the imagestream references and secrets [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source creating a build with an input source image and custom strategy should resolve the imagestream references and secrets": "should resolve the imagestream references and secrets", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source creating a build with an input source image and docker strategy should resolve the imagestream references and secrets": "should resolve the imagestream references and secrets [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source creating a build with an input source image and docker strategy should resolve the imagestream references and secrets": "should resolve the imagestream references and secrets", - "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source creating a build with an input source image and s2i strategy should resolve the imagestream references and secrets": "should resolve the imagestream references and secrets [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build can have container image source creating a build with an input source image and s2i strategy should resolve the imagestream references and secrets": "should resolve the imagestream references and secrets", - "[Top Level] [sig-builds][Feature:Builds][Slow] build controller RunBuildCompletePodDeleteTest should succeed": "should succeed [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build controller RunBuildCompletePodDeleteTest should succeed": "should succeed", - "[Top Level] [sig-builds][Feature:Builds][Slow] build controller RunBuildDeleteTest should succeed": "should succeed [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build controller RunBuildDeleteTest should succeed": "should succeed", - "[Top Level] [sig-builds][Feature:Builds][Slow] build controller RunBuildRunningPodDeleteTest should succeed": "should succeed [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] build controller RunBuildRunningPodDeleteTest should succeed": "should succeed", - "[Top Level] [sig-builds][Feature:Builds][Slow] builds should have deadlines oc start-build docker-build --wait Docker: should start a build and wait for the build failed and build pod being killed by kubelet": "Docker: should start a build and wait for the build failed and build pod being killed by kubelet [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] builds should have deadlines oc start-build docker-build --wait Docker: should start a build and wait for the build failed and build pod being killed by kubelet": "Docker: should start a build and wait for the build failed and build pod being killed by kubelet", - "[Top Level] [sig-builds][Feature:Builds][Slow] builds should have deadlines oc start-build source-build --wait Source: should start a build and wait for the build failed and build pod being killed by kubelet": "Source: should start a build and wait for the build failed and build pod being killed by kubelet [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] builds should have deadlines oc start-build source-build --wait Source: should start a build and wait for the build failed and build pod being killed by kubelet": "Source: should start a build and wait for the build failed and build pod being killed by kubelet", - "[Top Level] [sig-builds][Feature:Builds][Slow] builds should support proxies start build with broken proxy and a no_proxy override should start a docker build and wait for the build to succeed": "should start a docker build and wait for the build to succeed [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] builds should support proxies start build with broken proxy and a no_proxy override should start a docker build and wait for the build to succeed": "should start a docker build and wait for the build to succeed", - "[Top Level] [sig-builds][Feature:Builds][Slow] builds should support proxies start build with broken proxy and a no_proxy override should start an s2i build and wait for the build to succeed": "should start an s2i build and wait for the build to succeed [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] builds should support proxies start build with broken proxy and a no_proxy override should start an s2i build and wait for the build to succeed": "should start an s2i build and wait for the build to succeed", - "[Top Level] [sig-builds][Feature:Builds][Slow] builds should support proxies start build with broken proxy should start a build and wait for the build to fail": "should start a build and wait for the build to fail [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] builds should support proxies start build with broken proxy should start a build and wait for the build to fail": "should start a build and wait for the build to fail", - "[Top Level] [sig-builds][Feature:Builds][Slow] builds with a context directory docker context directory build should docker build an application using a context directory": "should docker build an application using a context directory [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] builds with a context directory docker context directory build should docker build an application using a context directory": "should docker build an application using a context directory", - "[Top Level] [sig-builds][Feature:Builds][Slow] builds with a context directory s2i context directory build should s2i build an application using a context directory": "should s2i build an application using a context directory [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] builds with a context directory s2i context directory build should s2i build an application using a context directory": "should s2i build an application using a context directory", - "[Top Level] [sig-builds][Feature:Builds][Slow] can use build secrets build with secrets and configMaps should contain secrets during the docker strategy build": "should contain secrets during the docker strategy build [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] can use build secrets build with secrets and configMaps should contain secrets during the docker strategy build": "should contain secrets during the docker strategy build", - "[Top Level] [sig-builds][Feature:Builds][Slow] can use build secrets build with secrets and configMaps should contain secrets during the source strategy build": "should contain secrets during the source strategy build [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] can use build secrets build with secrets and configMaps should contain secrets during the source strategy build": "should contain secrets during the source strategy build", - "[Top Level] [sig-builds][Feature:Builds][Slow] can use private repositories as build input Build using a username and password should create a new build using the internal gitserver": "should create a new build using the internal gitserver [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] can use private repositories as build input Build using a username and password should create a new build using the internal gitserver": "should create a new build using the internal gitserver", - "[Top Level] [sig-builds][Feature:Builds][Slow] completed builds should have digest of the image in their status Docker build started with log level >5 should save the image digest when finished": "should save the image digest when finished [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] completed builds should have digest of the image in their status Docker build started with log level >5 should save the image digest when finished": "should save the image digest when finished", - "[Top Level] [sig-builds][Feature:Builds][Slow] completed builds should have digest of the image in their status Docker build started with normal log level should save the image digest when finished": "should save the image digest when finished [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] completed builds should have digest of the image in their status Docker build started with normal log level should save the image digest when finished": "should save the image digest when finished", - "[Top Level] [sig-builds][Feature:Builds][Slow] completed builds should have digest of the image in their status S2I build started with log level >5 should save the image digest when finished": "should save the image digest when finished [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] completed builds should have digest of the image in their status S2I build started with log level >5 should save the image digest when finished": "should save the image digest when finished", - "[Top Level] [sig-builds][Feature:Builds][Slow] completed builds should have digest of the image in their status S2I build started with normal log level should save the image digest when finished": "should save the image digest when finished [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] completed builds should have digest of the image in their status S2I build started with normal log level should save the image digest when finished": "should save the image digest when finished", - "[Top Level] [sig-builds][Feature:Builds][Slow] incremental s2i build Building from a template should create a build from \"incremental-auth-build.json\" template and run it": "should create a build from \"incremental-auth-build.json\" template and run it [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] incremental s2i build Building from a template should create a build from \"incremental-auth-build.json\" template and run it": "should create a build from \"incremental-auth-build.json\" template and run it", - "[Top Level] [sig-builds][Feature:Builds][Slow] s2i build with environment file in sources Building from a template should create a image from \"test-env-build.json\" template and run it in a pod": "should create a image from \"test-env-build.json\" template and run it in a pod [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] s2i build with environment file in sources Building from a template should create a image from \"test-env-build.json\" template and run it in a pod": "should create a image from \"test-env-build.json\" template and run it in a pod", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context Setting build-args on Docker builds Should accept build args that are specified in the Dockerfile": "Should accept build args that are specified in the Dockerfile [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context Setting build-args on Docker builds Should accept build args that are specified in the Dockerfile": "Should accept build args that are specified in the Dockerfile", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context Setting build-args on Docker builds Should complete with a warning on non-existent build-arg": "Should complete with a warning on non-existent build-arg [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context Setting build-args on Docker builds Should complete with a warning on non-existent build-arg": "Should complete with a warning on non-existent build-arg", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context Setting build-args on Docker builds Should copy build args from BuildConfig to Build": "Should copy build args from BuildConfig to Build [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context Setting build-args on Docker builds Should copy build args from BuildConfig to Build": "Should copy build args from BuildConfig to Build", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context Trigger builds with branch refs matching directories on master branch Should checkout the config branch, not config directory": "Should checkout the config branch, not config directory [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context Trigger builds with branch refs matching directories on master branch Should checkout the config branch, not config directory": "Should checkout the config branch, not config directory", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds shoud accept --from-archive with https URL as an input": "shoud accept --from-archive with https URL as an input [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds shoud accept --from-archive with https URL as an input": "shoud accept --from-archive with https URL as an input", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds shoud accept --from-file with https URL as an input": "shoud accept --from-file with https URL as an input [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds shoud accept --from-file with https URL as an input": "shoud accept --from-file with https URL as an input", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should accept --from-dir as input": "should accept --from-dir as input [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should accept --from-dir as input": "should accept --from-dir as input", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should accept --from-file as input": "should accept --from-file as input [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should accept --from-file as input": "should accept --from-file as input", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should accept --from-repo as input": "should accept --from-repo as input [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should accept --from-repo as input": "should accept --from-repo as input", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should accept --from-repo with --commit as input": "should accept --from-repo with --commit as input [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should accept --from-repo with --commit as input": "should accept --from-repo with --commit as input", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should reject binary build requests without a --from-xxxx value": "should reject binary build requests without a --from-xxxx value [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context binary builds should reject binary build requests without a --from-xxxx value": "should reject binary build requests without a --from-xxxx value", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context cancel a binary build that doesn't start running in 5 minutes should start a build and wait for the build to be cancelled": "should start a build and wait for the build to be cancelled [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context cancel a binary build that doesn't start running in 5 minutes should start a build and wait for the build to be cancelled": "should start a build and wait for the build to be cancelled", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context cancel a build started by oc start-build --wait should start a build and wait for the build to cancel": "should start a build and wait for the build to cancel [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context cancel a build started by oc start-build --wait should start a build and wait for the build to cancel": "should start a build and wait for the build to cancel", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context oc start-build --wait should start a build and wait for the build to complete": "should start a build and wait for the build to complete [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context oc start-build --wait should start a build and wait for the build to complete": "should start a build and wait for the build to complete", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context oc start-build --wait should start a build and wait for the build to fail": "should start a build and wait for the build to fail [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context oc start-build --wait should start a build and wait for the build to fail": "should start a build and wait for the build to fail", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context oc start-build with pr ref should start a build from a PR ref, wait for the build to complete, and confirm the right level was used": "should start a build from a PR ref, wait for the build to complete, and confirm the right level was used [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context oc start-build with pr ref should start a build from a PR ref, wait for the build to complete, and confirm the right level was used": "should start a build from a PR ref, wait for the build to complete, and confirm the right level was used", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context override environment BUILD_LOGLEVEL in buildconfig can be overridden by build-loglevel": "BUILD_LOGLEVEL in buildconfig can be overridden by build-loglevel [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context override environment BUILD_LOGLEVEL in buildconfig can be overridden by build-loglevel": "BUILD_LOGLEVEL in buildconfig can be overridden by build-loglevel", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context override environment BUILD_LOGLEVEL in buildconfig should create verbose output": "BUILD_LOGLEVEL in buildconfig should create verbose output [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context override environment BUILD_LOGLEVEL in buildconfig should create verbose output": "BUILD_LOGLEVEL in buildconfig should create verbose output", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context override environment should accept environment variables": "should accept environment variables [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context override environment should accept environment variables": "should accept environment variables", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context s2i build maintaining symlinks should s2i build image and maintain symlinks": "should s2i build image and maintain symlinks [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context s2i build maintaining symlinks should s2i build image and maintain symlinks": "should s2i build image and maintain symlinks", - "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context start a build via a webhook should be able to start builds via the webhook with valid secrets and fail with invalid secrets": "should be able to start builds via the webhook with valid secrets and fail with invalid secrets [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] starting a build using CLI start-build test context start a build via a webhook should be able to start builds via the webhook with valid secrets and fail with invalid secrets": "should be able to start builds via the webhook with valid secrets and fail with invalid secrets", - "[Top Level] [sig-builds][Feature:Builds][Slow] testing build configuration hooks testing postCommit hook should run docker postCommit hooks": "should run docker postCommit hooks [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] testing build configuration hooks testing postCommit hook should run docker postCommit hooks": "should run docker postCommit hooks", - "[Top Level] [sig-builds][Feature:Builds][Slow] testing build configuration hooks testing postCommit hook should run s2i postCommit hooks": "should run s2i postCommit hooks [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] testing build configuration hooks testing postCommit hook should run s2i postCommit hooks": "should run s2i postCommit hooks", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status Docker fetch image content failure should contain the Docker build fetch image content reason and message": "should contain the Docker build fetch image content reason and message [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status Docker fetch image content failure should contain the Docker build fetch image content reason and message": "should contain the Docker build fetch image content reason and message", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status Docker fetch source failure should contain the Docker build fetch source failure reason and message": "should contain the Docker build fetch source failure reason and message [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status Docker fetch source failure should contain the Docker build fetch source failure reason and message": "should contain the Docker build fetch source failure reason and message", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status OutOfMemoryKilled should contain OutOfMemoryKilled failure reason and message": "should contain OutOfMemoryKilled failure reason and message [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status OutOfMemoryKilled should contain OutOfMemoryKilled failure reason and message": "should contain OutOfMemoryKilled failure reason and message", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status S2I bad context dir failure should contain the S2I bad context dir failure reason and message": "should contain the S2I bad context dir failure reason and message [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status S2I bad context dir failure should contain the S2I bad context dir failure reason and message": "should contain the S2I bad context dir failure reason and message", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status S2I fetch source failure should contain the S2I fetch source failure reason and message": "should contain the S2I fetch source failure reason and message [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status S2I fetch source failure should contain the S2I fetch source failure reason and message": "should contain the S2I fetch source failure reason and message", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status failed assemble container should contain the failure reason related to an assemble script failing in s2i": "should contain the failure reason related to an assemble script failing in s2i [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status failed assemble container should contain the failure reason related to an assemble script failing in s2i": "should contain the failure reason related to an assemble script failing in s2i", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status failed https proxy invalid url should contain the generic failure reason and message": "should contain the generic failure reason and message [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status failed https proxy invalid url should contain the generic failure reason and message": "should contain the generic failure reason and message", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status fetch builder image failure should contain the fetch builder image failure reason and message": "should contain the fetch builder image failure reason and message [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status fetch builder image failure should contain the fetch builder image failure reason and message": "should contain the fetch builder image failure reason and message", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status postcommit hook failure should contain the post commit hook failure reason and message": "should contain the post commit hook failure reason and message [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status postcommit hook failure should contain the post commit hook failure reason and message": "should contain the post commit hook failure reason and message", - "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status push image to registry failure should contain the image push to registry failure reason and message": "should contain the image push to registry failure reason and message [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] update failure status Build status push image to registry failure should contain the image push to registry failure reason and message": "should contain the image push to registry failure reason and message", - "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Parallel build run policy runs the builds in parallel": "runs the builds in parallel [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Parallel build run policy runs the builds in parallel": "runs the builds in parallel", - "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Serial build run policy handling cancellation starts the next build immediately after one is canceled": "starts the next build immediately after one is canceled [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Serial build run policy handling cancellation starts the next build immediately after one is canceled": "starts the next build immediately after one is canceled", - "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Serial build run policy handling deletion starts the next build immediately after running one is deleted": "starts the next build immediately after running one is deleted [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Serial build run policy handling deletion starts the next build immediately after running one is deleted": "starts the next build immediately after running one is deleted", - "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Serial build run policy handling failure starts the next build immediately after one fails": "starts the next build immediately after one fails [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Serial build run policy handling failure starts the next build immediately after one fails": "starts the next build immediately after one fails", - "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Serial build run policy runs the builds in serial order": "runs the builds in serial order [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with Serial build run policy runs the builds in serial order": "runs the builds in serial order", - "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with SerialLatestOnly build run policy runs the builds in serial order but cancel previous builds": "runs the builds in serial order but cancel previous builds [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] using build configuration runPolicy build configuration with SerialLatestOnly build run policy runs the builds in serial order but cancel previous builds": "runs the builds in serial order but cancel previous builds", - "[Top Level] [sig-builds][Feature:Builds][Slow] using pull secrets in a build start-build test context binary builds should be able to run a build that is implicitly pulling from the internal registry": "should be able to run a build that is implicitly pulling from the internal registry [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] using pull secrets in a build start-build test context binary builds should be able to run a build that is implicitly pulling from the internal registry": "should be able to run a build that is implicitly pulling from the internal registry", - "[Top Level] [sig-builds][Feature:Builds][Slow] using pull secrets in a build start-build test context pulling from an external authenticated registry should be able to use a pull secret in a build": "should be able to use a pull secret in a build [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] using pull secrets in a build start-build test context pulling from an external authenticated registry should be able to use a pull secret in a build": "should be able to use a pull secret in a build", - "[Top Level] [sig-builds][Feature:Builds][Slow] using pull secrets in a build start-build test context pulling from an external authenticated registry should be able to use a pull secret linked to the builder service account": "should be able to use a pull secret linked to the builder service account [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][Slow] using pull secrets in a build start-build test context pulling from an external authenticated registry should be able to use a pull secret linked to the builder service account": "should be able to use a pull secret linked to the builder service account", "[Top Level] [sig-builds][Feature:Builds][pullsecret] docker build using a pull secret Building from a template should create a docker build that pulls using a secret run it": "should create a docker build that pulls using a secret run it [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-builds][Feature:Builds][sig-devex][Feature:Jenkins][Slow] openshift pipeline build Sync plugin tests using the ephemeral template": "using the ephemeral template [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][sig-devex][Feature:Jenkins][Slow] openshift pipeline build Sync plugin tests using the ephemeral template": "using the ephemeral template", - "[Top Level] [sig-builds][Feature:Builds][sig-devex][Feature:Jenkins][Slow] openshift pipeline build jenkins-client-plugin tests using the ephemeral template": "using the ephemeral template [Suite:openshift]", + "[Top Level] [sig-builds][Feature:Builds][sig-devex][Feature:Jenkins][Slow] openshift pipeline build jenkins-client-plugin tests using the ephemeral template": "using the ephemeral template", "[Top Level] [sig-builds][Feature:Builds][timing] capture build stages and durations should record build stages and durations for docker": "should record build stages and durations for docker [Suite:openshift/conformance/parallel]", @@ -1433,127 +1433,127 @@ var annotations = map[string]string{ "[Top Level] [sig-cli] oc rsh rsh specific flags should work well when access to a remote shell": "should work well when access to a remote shell [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/admin.sh": "test/cmd/admin.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/admin.sh": "test/cmd/admin.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/annotations.sh": "test/cmd/annotations.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/annotations.sh": "test/cmd/annotations.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/apiresources.sh": "test/cmd/apiresources.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/apiresources.sh": "test/cmd/apiresources.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/authentication.sh": "test/cmd/authentication.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/authentication.sh": "test/cmd/authentication.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/basicresources.sh": "test/cmd/basicresources.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/basicresources.sh": "test/cmd/basicresources.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/builds.sh": "test/cmd/builds.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/builds.sh": "test/cmd/builds.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/completions.sh": "test/cmd/completions.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/completions.sh": "test/cmd/completions.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/config.sh": "test/cmd/config.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/config.sh": "test/cmd/config.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/convert.sh": "test/cmd/convert.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/convert.sh": "test/cmd/convert.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/create.sh": "test/cmd/create.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/create.sh": "test/cmd/create.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/debug.sh": "test/cmd/debug.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/debug.sh": "test/cmd/debug.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/deployments.sh": "test/cmd/deployments.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/deployments.sh": "test/cmd/deployments.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/describer.sh": "test/cmd/describer.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/describer.sh": "test/cmd/describer.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/edit.sh": "test/cmd/edit.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/edit.sh": "test/cmd/edit.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/env.sh": "test/cmd/env.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/env.sh": "test/cmd/env.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/framework-test.sh": "test/cmd/framework-test.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/framework-test.sh": "test/cmd/framework-test.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/get.sh": "test/cmd/get.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/get.sh": "test/cmd/get.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/help.sh": "test/cmd/help.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/help.sh": "test/cmd/help.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/idle.sh": "test/cmd/idle.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/idle.sh": "test/cmd/idle.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/image-lookup.sh": "test/cmd/image-lookup.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/image-lookup.sh": "test/cmd/image-lookup.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/images.sh": "test/cmd/images.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/images.sh": "test/cmd/images.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/observe.sh": "test/cmd/observe.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/observe.sh": "test/cmd/observe.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/policy-storage-admin.sh": "test/cmd/policy-storage-admin.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/policy-storage-admin.sh": "test/cmd/policy-storage-admin.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/printer.sh": "test/cmd/printer.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/printer.sh": "test/cmd/printer.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/projects.sh": "test/cmd/projects.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/projects.sh": "test/cmd/projects.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/quota.sh": "test/cmd/quota.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/quota.sh": "test/cmd/quota.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/routes.sh": "test/cmd/routes.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/routes.sh": "test/cmd/routes.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/rsync.sh": "test/cmd/rsync.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/rsync.sh": "test/cmd/rsync.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/run.sh": "test/cmd/run.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/run.sh": "test/cmd/run.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/secrets.sh": "test/cmd/secrets.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/secrets.sh": "test/cmd/secrets.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/services.sh": "test/cmd/services.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/services.sh": "test/cmd/services.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/set-data.sh": "test/cmd/set-data.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/set-data.sh": "test/cmd/set-data.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/set-image.sh": "test/cmd/set-image.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/set-image.sh": "test/cmd/set-image.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/set-liveness-probe.sh": "test/cmd/set-liveness-probe.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/set-liveness-probe.sh": "test/cmd/set-liveness-probe.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/setbuildhook.sh": "test/cmd/setbuildhook.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/setbuildhook.sh": "test/cmd/setbuildhook.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/setbuildsecret.sh": "test/cmd/setbuildsecret.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/setbuildsecret.sh": "test/cmd/setbuildsecret.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/status.sh": "test/cmd/status.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/status.sh": "test/cmd/status.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/templates.sh": "test/cmd/templates.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/templates.sh": "test/cmd/templates.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/timeout.sh": "test/cmd/timeout.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/timeout.sh": "test/cmd/timeout.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/triggers.sh": "test/cmd/triggers.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/triggers.sh": "test/cmd/triggers.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/volumes.sh": "test/cmd/volumes.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/volumes.sh": "test/cmd/volumes.sh", - "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/whoami.sh": "test/cmd/whoami.sh [Suite:openshift]", + "[Top Level] [sig-cli][Feature:LegacyCommandTests][Disruptive][Serial] test-cmd: test/cmd/whoami.sh": "test/cmd/whoami.sh", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods copy by strategy should copy files with the rsync strategy": "should copy files with the rsync strategy [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods copy by strategy should copy files with the rsync strategy": "should copy files with the rsync strategy", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods copy by strategy should copy files with the rsync-daemon strategy": "should copy files with the rsync-daemon strategy [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods copy by strategy should copy files with the rsync-daemon strategy": "should copy files with the rsync-daemon strategy", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods copy by strategy should copy files with the tar strategy": "should copy files with the tar strategy [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods copy by strategy should copy files with the tar strategy": "should copy files with the tar strategy", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor multiple --exclude flags": "should honor multiple --exclude flags [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor multiple --exclude flags": "should honor multiple --exclude flags", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor multiple --include flags": "should honor multiple --include flags [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor multiple --include flags": "should honor multiple --include flags", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor the --exclude flag": "should honor the --exclude flag [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor the --exclude flag": "should honor the --exclude flag", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor the --include flag": "should honor the --include flag [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor the --include flag": "should honor the --include flag", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor the --no-perms flag": "should honor the --no-perms flag [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor the --no-perms flag": "should honor the --no-perms flag", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor the --progress flag": "should honor the --progress flag [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods rsync specific flags should honor the --progress flag": "should honor the --progress flag", - "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods using a watch should watch for changes and rsync them": "should watch for changes and rsync them [Suite:openshift]", + "[Top Level] [sig-cli][Slow] can use rsync to upload files to pods using a watch should watch for changes and rsync them": "should watch for changes and rsync them", - "[Top Level] [sig-cli][Slow] oc debug should print the container image-based container entrypoint/command": "should print the container image-based container entrypoint/command [Suite:openshift]", + "[Top Level] [sig-cli][Slow] oc debug should print the container image-based container entrypoint/command": "should print the container image-based container entrypoint/command", - "[Top Level] [sig-cli][Slow] oc debug should print the imagestream-based container entrypoint/command": "should print the imagestream-based container entrypoint/command [Suite:openshift]", + "[Top Level] [sig-cli][Slow] oc debug should print the imagestream-based container entrypoint/command": "should print the imagestream-based container entrypoint/command", - "[Top Level] [sig-cli][Slow] oc debug should print the overridden container image-based container entrypoint/command": "should print the overridden container image-based container entrypoint/command [Suite:openshift]", + "[Top Level] [sig-cli][Slow] oc debug should print the overridden container image-based container entrypoint/command": "should print the overridden container image-based container entrypoint/command", - "[Top Level] [sig-cli][Slow] oc debug should print the overridden imagestream-based container entrypoint/command": "should print the overridden imagestream-based container entrypoint/command [Suite:openshift]", + "[Top Level] [sig-cli][Slow] oc debug should print the overridden imagestream-based container entrypoint/command": "should print the overridden imagestream-based container entrypoint/command", "[Top Level] [sig-cluster-lifecycle] CSRs from machines that are not recognized by the cloud provider are not approved": "CSRs from machines that are not recognized by the cloud provider are not approved [Suite:openshift/conformance/parallel]", "[Top Level] [sig-cluster-lifecycle] Pods cannot access the /config/master API endpoint": "Pods cannot access the /config/master API endpoint [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-cluster-lifecycle][Feature:DisasterRecovery][Disruptive] [Feature:NodeRecovery] Cluster should survive master and worker failure and recover with machine health checks": "[Feature:NodeRecovery] Cluster should survive master and worker failure and recover with machine health checks [Serial] [Suite:openshift]", + "[Top Level] [sig-cluster-lifecycle][Feature:DisasterRecovery][Disruptive] [Feature:NodeRecovery] Cluster should survive master and worker failure and recover with machine health checks": "[Feature:NodeRecovery] Cluster should survive master and worker failure and recover with machine health checks [Serial]", "[Top Level] [sig-cluster-lifecycle][Feature:Machines] Managed cluster should have machine resources": "have machine resources [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-cluster-lifecycle][Feature:Machines][Disruptive] Managed cluster should recover from deleted worker machines": "recover from deleted worker machines [Serial] [Suite:openshift]", + "[Top Level] [sig-cluster-lifecycle][Feature:Machines][Disruptive] Managed cluster should recover from deleted worker machines": "recover from deleted worker machines [Serial]", "[Top Level] [sig-cluster-lifecycle][Feature:Machines][Early] Managed cluster should have same number of Machines and Nodes": "have same number of Machines and Nodes [Suite:openshift/conformance/parallel]", @@ -1561,69 +1561,69 @@ var annotations = map[string]string{ "[Top Level] [sig-devex] check registry.redhat.io is available and samples operator can import sample imagestreams run sample related validations": "run sample related validations [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/nodejs-10-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/nodejs-10-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/nodejs-10-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/nodejs-10-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/nodejs-12-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/nodejs-12-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/nodejs-12-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/nodejs-12-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/perl-526-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/perl-526-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/perl-526-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/perl-526-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/php-72-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/php-72-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/php-72-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/php-72-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/php-73-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/php-73-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/php-73-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/php-73-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/python-27-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/python-27-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/python-27-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/python-27-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/python-36-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/python-36-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/python-36-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/python-36-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/ruby-24-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/ruby-24-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/ruby-24-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/ruby-24-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/ruby-25-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/ruby-25-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/ruby-25-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/ruby-25-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/ruby-26-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/ruby-26-rhel7\" should print the usage [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled returning s2i usage when running the image \"registry.redhat.io/rhscl/ruby-26-rhel7\" should print the usage": "\"registry.redhat.io/rhscl/ruby-26-rhel7\" should print the usage", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/nodejs-10-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/nodejs-10-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/nodejs-10-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/nodejs-10-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/nodejs-12-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/nodejs-12-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/nodejs-12-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/nodejs-12-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/perl-526-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/perl-526-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/perl-526-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/perl-526-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/php-72-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/php-72-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/php-72-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/php-72-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/php-73-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/php-73-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/php-73-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/php-73-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/python-27-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/python-27-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/python-27-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/python-27-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/python-36-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/python-36-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/python-36-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/python-36-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/ruby-24-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/ruby-24-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/ruby-24-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/ruby-24-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/ruby-25-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/ruby-25-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/ruby-25-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/ruby-25-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/ruby-26-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/ruby-26-rhel7\" should be SCL enabled [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift images should be SCL enabled using the SCL in s2i images \"registry.redhat.io/rhscl/ruby-26-rhel7\" should be SCL enabled": "\"registry.redhat.io/rhscl/ruby-26-rhel7\" should be SCL enabled", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift sample application repositories [sig-devex][Feature:ImageEcosystem][php] test php images with cakephp-ex db repo Building cakephp-mysql app from new-app should build a cakephp-mysql image and run it in a pod": "should build a cakephp-mysql image and run it in a pod [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift sample application repositories [sig-devex][Feature:ImageEcosystem][php] test php images with cakephp-ex db repo Building cakephp-mysql app from new-app should build a cakephp-mysql image and run it in a pod": "should build a cakephp-mysql image and run it in a pod", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift sample application repositories [sig-devex][Feature:ImageEcosystem][python] test python images with django-ex db repo Building django-psql app from new-app should build a django-psql image and run it in a pod": "should build a django-psql image and run it in a pod [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift sample application repositories [sig-devex][Feature:ImageEcosystem][python] test python images with django-ex db repo Building django-psql app from new-app should build a django-psql image and run it in a pod": "should build a django-psql image and run it in a pod", - "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift sample application repositories [sig-devex][Feature:ImageEcosystem][ruby] test ruby images with rails-ex db repo Building rails-postgresql app from new-app should build a rails-postgresql image and run it in a pod": "should build a rails-postgresql image and run it in a pod [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][Slow] openshift sample application repositories [sig-devex][Feature:ImageEcosystem][ruby] test ruby images with rails-ex db repo Building rails-postgresql app from new-app should build a rails-postgresql image and run it in a pod": "should build a rails-postgresql image and run it in a pod", - "[Top Level] [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template": "should instantiate the template [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][mariadb][Slow] openshift mariadb image Creating from a template should instantiate the template": "should instantiate the template", - "[Top Level] [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template": "should instantiate the template [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][mysql][Slow] openshift mysql image Creating from a template should instantiate the template": "should instantiate the template", - "[Top Level] [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work": "should work [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][perl][Slow] hot deploy for openshift perl image hot deploy test should work": "should work", - "[Top Level] [sig-devex][Feature:ImageEcosystem][php][Slow] hot deploy for openshift php image CakePHP example should work with hot deploy": "should work with hot deploy [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][php][Slow] hot deploy for openshift php image CakePHP example should work with hot deploy": "should work with hot deploy", - "[Top Level] [sig-devex][Feature:ImageEcosystem][python][Slow] hot deploy for openshift python image Django example should work with hot deploy": "should work with hot deploy [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][python][Slow] hot deploy for openshift python image Django example should work with hot deploy": "should work with hot deploy", - "[Top Level] [sig-devex][Feature:ImageEcosystem][ruby][Slow] hot deploy for openshift ruby image Rails example should work with hot deploy": "should work with hot deploy [Suite:openshift]", + "[Top Level] [sig-devex][Feature:ImageEcosystem][ruby][Slow] hot deploy for openshift ruby image Rails example should work with hot deploy": "should work with hot deploy", - "[Top Level] [sig-devex][Feature:JenkinsRHELImagesOnly][Slow] openshift pipeline build Sync plugin tests using the ephemeral template": "using the ephemeral template [Suite:openshift]", + "[Top Level] [sig-devex][Feature:JenkinsRHELImagesOnly][Slow] openshift pipeline build Sync plugin tests using the ephemeral template": "using the ephemeral template", - "[Top Level] [sig-devex][Feature:Jenkins][Slow] Jenkins repos e2e openshift using slow openshift pipeline build Sync plugin tests using the ephemeral template": "using the ephemeral template [Suite:openshift]", + "[Top Level] [sig-devex][Feature:Jenkins][Slow] Jenkins repos e2e openshift using slow openshift pipeline build Sync plugin tests using the ephemeral template": "using the ephemeral template", - "[Top Level] [sig-devex][Feature:Jenkins][Slow] Jenkins repos e2e openshift using slow openshift pipeline build Sync plugin tests using the persistent template": "using the persistent template [Suite:openshift]", + "[Top Level] [sig-devex][Feature:Jenkins][Slow] Jenkins repos e2e openshift using slow openshift pipeline build Sync plugin tests using the persistent template": "using the persistent template", "[Top Level] [sig-devex][Feature:OpenShiftControllerManager] TestAutomaticCreationOfPullSecrets": "TestAutomaticCreationOfPullSecrets [Suite:openshift/conformance/parallel]", @@ -1659,9 +1659,9 @@ var annotations = map[string]string{ "[Top Level] [sig-etcd] etcd leader changes are not excessive": "leader changes are not excessive [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-etcd][Feature:DisasterRecovery][Disruptive] [Feature:EtcdRecovery] Cluster should restore itself after quorum loss": "[Feature:EtcdRecovery] Cluster should restore itself after quorum loss [Serial] [Suite:openshift]", + "[Top Level] [sig-etcd][Feature:DisasterRecovery][Disruptive] [Feature:EtcdRecovery] Cluster should restore itself after quorum loss": "[Feature:EtcdRecovery] Cluster should restore itself after quorum loss [Serial]", - "[Top Level] [sig-etcd][Feature:DisasterRecovery][Disruptive] [dr-etcd-snapshot] Cluster should restore itself from etcd snapshot": "[dr-etcd-snapshot] Cluster should restore itself from etcd snapshot [Serial] [Suite:openshift]", + "[Top Level] [sig-etcd][Feature:DisasterRecovery][Disruptive] [dr-etcd-snapshot] Cluster should restore itself from etcd snapshot": "[dr-etcd-snapshot] Cluster should restore itself from etcd snapshot [Serial]", "[Top Level] [sig-imageregistry][Feature:ImageAppend] Image append should create images by appending them": "should create images by appending them [Suite:openshift/conformance/parallel]", @@ -1679,41 +1679,41 @@ var annotations = map[string]string{ "[Top Level] [sig-imageregistry][Feature:ImageLookup] Image policy should update standard Kube object image fields when local names are on": "should update standard Kube object image fields when local names are on [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-imageregistry][Feature:ImageMirror][Slow] Image mirror mirror image from integrated registry into few external registries": "mirror image from integrated registry into few external registries [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageMirror][Slow] Image mirror mirror image from integrated registry into few external registries": "mirror image from integrated registry into few external registries", - "[Top Level] [sig-imageregistry][Feature:ImageMirror][Slow] Image mirror mirror image from integrated registry to external registry": "mirror image from integrated registry to external registry [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageMirror][Slow] Image mirror mirror image from integrated registry to external registry": "mirror image from integrated registry to external registry", - "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune should delete orphaned blobs": "should delete orphaned blobs [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune should delete orphaned blobs": "should delete orphaned blobs", - "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune should show orphaned blob deletions in dry-run mode": "should show orphaned blob deletions in dry-run mode [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image hard prune should show orphaned blob deletions in dry-run mode": "should show orphaned blob deletions in dry-run mode", - "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune of schema 1 should prune old image": "should prune old image [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune of schema 1 should prune old image": "should prune old image", - "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune of schema 2 should prune old image with config": "should prune old image with config [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune of schema 2 should prune old image with config": "should prune old image with config", - "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune with --all=false flag should prune only internally managed images": "should prune only internally managed images [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune with --all=false flag should prune only internally managed images": "should prune only internally managed images", - "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune with --prune-registry==false should prune old image but skip registry": "should prune old image but skip registry [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune with --prune-registry==false should prune old image but skip registry": "should prune old image but skip registry", - "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune with default --all flag should prune both internally managed and external images": "should prune both internally managed and external images [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImagePrune][Serial][Suite:openshift/registry/serial][Local] Image prune with default --all flag should prune both internally managed and external images": "should prune both internally managed and external images", - "[Top Level] [sig-imageregistry][Feature:ImageQuota] Image resource quota should deny a push of built image exceeding openshift.io/imagestreams quota": "should deny a push of built image exceeding openshift.io/imagestreams quota [Disabled:SpecialConfig] [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageQuota] Image resource quota should deny a push of built image exceeding openshift.io/imagestreams quota": "should deny a push of built image exceeding openshift.io/imagestreams quota [Disabled:SpecialConfig]", - "[Top Level] [sig-imageregistry][Feature:ImageQuota][Serial][Suite:openshift/registry/serial] Image limit range should deny a container image reference exceeding limit on openshift.io/image-tags resource": "should deny a container image reference exceeding limit on openshift.io/image-tags resource [Disabled:SpecialConfig] [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageQuota][Serial][Suite:openshift/registry/serial] Image limit range should deny a container image reference exceeding limit on openshift.io/image-tags resource": "should deny a container image reference exceeding limit on openshift.io/image-tags resource [Disabled:SpecialConfig]", - "[Top Level] [sig-imageregistry][Feature:ImageQuota][Serial][Suite:openshift/registry/serial] Image limit range should deny a push of built image exceeding limit on openshift.io/images resource": "should deny a push of built image exceeding limit on openshift.io/images resource [Disabled:SpecialConfig] [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageQuota][Serial][Suite:openshift/registry/serial] Image limit range should deny a push of built image exceeding limit on openshift.io/images resource": "should deny a push of built image exceeding limit on openshift.io/images resource [Disabled:SpecialConfig]", - "[Top Level] [sig-imageregistry][Feature:ImageQuota][Serial][Suite:openshift/registry/serial] Image limit range should deny a push of built image exceeding openshift.io/Image limit": "should deny a push of built image exceeding openshift.io/Image limit [Disabled:SpecialConfig] [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageQuota][Serial][Suite:openshift/registry/serial] Image limit range should deny a push of built image exceeding openshift.io/Image limit": "should deny a push of built image exceeding openshift.io/Image limit [Disabled:SpecialConfig]", - "[Top Level] [sig-imageregistry][Feature:ImageQuota][Serial][Suite:openshift/registry/serial] Image limit range should deny an import of a repository exceeding limit on openshift.io/image-tags resource": "should deny an import of a repository exceeding limit on openshift.io/image-tags resource [Disabled:SpecialConfig] [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageQuota][Serial][Suite:openshift/registry/serial] Image limit range should deny an import of a repository exceeding limit on openshift.io/image-tags resource": "should deny an import of a repository exceeding limit on openshift.io/image-tags resource [Disabled:SpecialConfig]", - "[Top Level] [sig-imageregistry][Feature:ImageStreamImport][Serial][Disruptive] ImageStream API TestImportImageFromBlockedRegistry": "TestImportImageFromBlockedRegistry [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageStreamImport][Serial][Disruptive] ImageStream API TestImportImageFromBlockedRegistry": "TestImportImageFromBlockedRegistry", - "[Top Level] [sig-imageregistry][Feature:ImageStreamImport][Serial][Disruptive] ImageStream API TestImportImageFromInsecureRegistry": "TestImportImageFromInsecureRegistry [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageStreamImport][Serial][Disruptive] ImageStream API TestImportImageFromInsecureRegistry": "TestImportImageFromInsecureRegistry", - "[Top Level] [sig-imageregistry][Feature:ImageStreamImport][Serial][Disruptive] ImageStream API TestImportRepositoryFromBlockedRegistry": "TestImportRepositoryFromBlockedRegistry [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageStreamImport][Serial][Disruptive] ImageStream API TestImportRepositoryFromBlockedRegistry": "TestImportRepositoryFromBlockedRegistry", - "[Top Level] [sig-imageregistry][Feature:ImageStreamImport][Serial][Disruptive] ImageStream API TestImportRepositoryFromInsecureRegistry": "TestImportRepositoryFromInsecureRegistry [Suite:openshift]", + "[Top Level] [sig-imageregistry][Feature:ImageStreamImport][Serial][Disruptive] ImageStream API TestImportRepositoryFromInsecureRegistry": "TestImportRepositoryFromInsecureRegistry", "[Top Level] [sig-imageregistry][Feature:ImageTriggers] Annotation trigger reconciles after the image is overwritten": "reconciles after the image is overwritten [Suite:openshift/conformance/parallel]", @@ -1821,7 +1821,7 @@ var annotations = map[string]string{ "[Top Level] [sig-instrumentation][sig-builds][Feature:Builds] Prometheus when installed on the cluster should start and expose a secured proxy and verify build metrics": "should start and expose a secured proxy and verify build metrics [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-network-edge] DNS should answer endpoint and wildcard queries for the cluster": "should answer endpoint and wildcard queries for the cluster [Disabled:Broken] [Suite:openshift]", + "[Top Level] [sig-network-edge] DNS should answer endpoint and wildcard queries for the cluster": "should answer endpoint and wildcard queries for the cluster [Disabled:Broken]", "[Top Level] [sig-network-edge][Conformance][Area:Networking][Feature:Router] The HAProxy router should pass the gRPC interoperability tests": "should pass the gRPC interoperability tests [Suite:openshift/conformance/parallel/minimal]", @@ -1829,19 +1829,19 @@ var annotations = map[string]string{ "[Top Level] [sig-network-edge][Conformance][Area:Networking][Feature:Router] The HAProxy router should pass the http2 tests": "should pass the http2 tests [Suite:openshift/conformance/parallel/minimal]", - "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling idling [Local] with a single service and DeploymentConfig should idle the service and DeploymentConfig properly": "should idle the service and DeploymentConfig properly [Disabled:Broken] [Suite:openshift]", + "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling idling [Local] with a single service and DeploymentConfig should idle the service and DeploymentConfig properly": "should idle the service and DeploymentConfig properly [Disabled:Broken]", - "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling idling [Local] with a single service and ReplicationController should idle the service and ReplicationController properly": "should idle the service and ReplicationController properly [Suite:openshift]", + "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling idling [Local] with a single service and ReplicationController should idle the service and ReplicationController properly": "should idle the service and ReplicationController properly", - "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should handle many TCP connections by dropping those under a certain bound [Local]": "should handle many TCP connections by dropping those under a certain bound [Local] [Suite:openshift]", + "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should handle many TCP connections by dropping those under a certain bound [Local]": "should handle many TCP connections by dropping those under a certain bound [Local]", - "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should handle many UDP senders (by continuing to drop all packets on the floor) [Local]": "should handle many UDP senders (by continuing to drop all packets on the floor) [Local] [Suite:openshift]", + "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should handle many UDP senders (by continuing to drop all packets on the floor) [Local]": "should handle many UDP senders (by continuing to drop all packets on the floor) [Local]", - "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should work with TCP (when fully idled) [Local]": "should work with TCP (when fully idled) [Local] [Suite:openshift]", + "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should work with TCP (when fully idled) [Local]": "should work with TCP (when fully idled) [Local]", - "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should work with TCP (while idling) [Local]": "should work with TCP (while idling) [Local] [Suite:openshift]", + "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should work with TCP (while idling) [Local]": "should work with TCP (while idling) [Local]", - "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should work with UDP [Local]": "should work with UDP [Local] [Suite:openshift]", + "[Top Level] [sig-network-edge][Feature:Idling] Idling and unidling unidling should work with UDP [Local]": "should work with UDP [Local]", "[Top Level] [sig-network] ClusterDns [Feature:Example] should create pod that uses dns": "should create pod that uses dns [Disabled:Broken] [Suite:k8s]", @@ -2291,7 +2291,7 @@ var annotations = map[string]string{ "[Top Level] [sig-node] RuntimeClass should run a Pod requesting a RuntimeClass with scheduling [NodeFeature:RuntimeHandler] [Disruptive] ": "should run a Pod requesting a RuntimeClass with scheduling [NodeFeature:RuntimeHandler] [Disruptive] [Disabled:Broken] [Serial] [Suite:k8s]", - "[Top Level] [sig-node] supplemental groups Ensure supplemental groups propagate to docker should propagate requested groups to the container [Local]": "should propagate requested groups to the container [Local] [Suite:openshift]", + "[Top Level] [sig-node] supplemental groups Ensure supplemental groups propagate to docker should propagate requested groups to the container [Local]": "should propagate requested groups to the container [Local]", "[Top Level] [sig-operator] OLM should Implement packages API server and list packagemanifest info with namespace not NULL": "Implement packages API server and list packagemanifest info with namespace not NULL [Suite:openshift/conformance/parallel]", @@ -2313,13 +2313,13 @@ var annotations = map[string]string{ "[Top Level] [sig-operator] an end user can use OLM can subscribe to the operator": "can subscribe to the operator [Suite:openshift/conformance/parallel]", - "[Top Level] [sig-scalability][Feature:Performance] Load cluster should populate the cluster [Slow][Serial]": "should populate the cluster [Slow][Serial] [Suite:openshift]", + "[Top Level] [sig-scalability][Feature:Performance] Load cluster should populate the cluster [Slow][Serial]": "should populate the cluster [Slow][Serial]", - "[Top Level] [sig-scalability][Feature:Performance][Serial][Slow] Load cluster concurrently with templates": "concurrently with templates [Suite:openshift]", + "[Top Level] [sig-scalability][Feature:Performance][Serial][Slow] Load cluster concurrently with templates": "concurrently with templates", - "[Top Level] [sig-scalability][Feature:Performance][Serial][Slow] Mirror cluster it should read the cluster apps": "it should read the cluster apps [Suite:openshift]", + "[Top Level] [sig-scalability][Feature:Performance][Serial][Slow] Mirror cluster it should read the cluster apps": "it should read the cluster apps", - "[Top Level] [sig-scalability][Feature:Performance][Serial][Slow] Mirror cluster it should read the node info": "it should read the node info [Suite:openshift]", + "[Top Level] [sig-scalability][Feature:Performance][Serial][Slow] Mirror cluster it should read the node info": "it should read the node info", "[Top Level] [sig-scheduling] GPUDevicePluginAcrossRecreate [Feature:Recreate] run Nvidia GPU Device Plugin tests with a recreation": "run Nvidia GPU Device Plugin tests with a recreation [Disabled:SpecialConfig] [Suite:k8s]", diff --git a/vendor/k8s.io/apiserver/pkg/audit/request.go b/vendor/k8s.io/apiserver/pkg/audit/request.go index 205bf25c8b56..f88c196e67a4 100644 --- a/vendor/k8s.io/apiserver/pkg/audit/request.go +++ b/vendor/k8s.io/apiserver/pkg/audit/request.go @@ -153,8 +153,15 @@ func LogRequestObject(ae *auditinternal.Event, obj runtime.Object, gvr schema.Gr return } + copy, ok, err := copyWithoutManagedFields(obj) + if err != nil { + klog.Warningf("error while dropping managed fields from the request for %q error: %v", reflect.TypeOf(obj).Name(), err) + } + if ok { + obj = copy + } + // TODO(audit): hook into the serializer to avoid double conversion - var err error ae.RequestObject, err = encodeObject(obj, gvr.GroupVersion(), s) if err != nil { // TODO(audit): add error slice to audit event struct @@ -193,8 +200,16 @@ func LogResponseObject(ae *auditinternal.Event, obj runtime.Object, gv schema.Gr if ae.Level.Less(auditinternal.LevelRequestResponse) { return } + + copy, ok, err := copyWithoutManagedFields(obj) + if err != nil { + klog.Warningf("error while dropping managed fields from the response for %q error: %v", reflect.TypeOf(obj).Name(), err) + } + if ok { + obj = copy + } + // TODO(audit): hook into the serializer to avoid double conversion - var err error ae.ResponseObject, err = encodeObject(obj, gv, s) if err != nil { klog.Warningf("Audit failed for %q response: %v", reflect.TypeOf(obj).Name(), err) @@ -244,3 +259,62 @@ func maybeTruncateUserAgent(req *http.Request) string { return ua } + +// copyWithoutManagedFields will make a deep copy of the specified object and will discard +// managed fields from the copy. +// The specified object is expected to be a meta.Object or a "list". The specified object obj +// is treated as readonly and hence not mutated. +// On return, an error is set if the function runs into any error while removing the managed fields. +// On return, the boolean value is true if the copy has been made successfully, otherwise false. +func copyWithoutManagedFields(obj runtime.Object) (runtime.Object, bool, error) { + removeManagedFields := func(obj runtime.Object) error { + accessor, err := meta.Accessor(obj) + if err != nil { + return err + } + accessor.SetManagedFields(nil) + return nil + } + + isAccessor := true + if _, err := meta.Accessor(obj); err != nil { + isAccessor = false + } + isList := meta.IsListType(obj) + + _, isTable := obj.(*metav1.Table) + if !isAccessor && !isList && !isTable { + return nil, false, nil + } + + copy := obj.DeepCopyObject() + + if isAccessor { + if err := removeManagedFields(copy); err != nil { + return nil, false, err + } + } + + if isList { + if err := meta.EachListItem(copy, removeManagedFields); err != nil { + return nil, false, err + } + } + + if isTable { + table := copy.(*metav1.Table) + for i := range table.Rows { + rowObj := table.Rows[i].Object + + if rowObj.Object == nil { + continue + } + + if err := removeManagedFields(rowObj.Object); err != nil { + return nil, false, err + } + } + } + + return copy, true, nil +} diff --git a/vendor/k8s.io/apiserver/pkg/server/patch_genericapiserver.go b/vendor/k8s.io/apiserver/pkg/server/patch_genericapiserver.go index 425f95cb2012..bb798b198ba5 100644 --- a/vendor/k8s.io/apiserver/pkg/server/patch_genericapiserver.go +++ b/vendor/k8s.io/apiserver/pkg/server/patch_genericapiserver.go @@ -116,7 +116,9 @@ func WithNonReadyRequestLogging(handler http.Handler, hasBeenReadyCh <-chan stru // ignore connections to local IP. Those clients better know what they are doing. if pth := "/" + strings.TrimLeft(r.URL.Path, "/"); pth != "/readyz" && pth != "/healthz" && pth != "/livez" { if isLocal(r) { - klog.V(2).Infof("Loopback request to %q (user agent %q) before server is ready. This client probably does not watch /readyz and might get inconsistent answers.", r.URL.Path, r.UserAgent()) + if !isKubeApiserverLoopBack(r) { + klog.V(2).Infof("Loopback request to %q (user agent %q) before server is ready. This client probably does not watch /readyz and might get inconsistent answers.", r.URL.Path, r.UserAgent()) + } } else { klog.Warningf("Request to %q (source IP %s, user agent %q) before server is ready, possibly a sign for a broken load balancer setup.", r.URL.Path, r.RemoteAddr, r.UserAgent()) @@ -143,3 +145,7 @@ func isLocal(req *http.Request) bool { return false } + +func isKubeApiserverLoopBack(req *http.Request) bool { + return strings.HasPrefix(req.UserAgent(), "kube-apiserver/") +} diff --git a/vendor/k8s.io/kubernetes/openshift-hack/e2e/annotate/annotate.go b/vendor/k8s.io/kubernetes/openshift-hack/e2e/annotate/annotate.go index e9a2ab985780..da8a0d104b7b 100644 --- a/vendor/k8s.io/kubernetes/openshift-hack/e2e/annotate/annotate.go +++ b/vendor/k8s.io/kubernetes/openshift-hack/e2e/annotate/annotate.go @@ -228,9 +228,6 @@ func (r *ginkgoTestRenamer) generateRename(name, parentName string, node types.T name += " [Suite:openshift/conformance/parallel]" } } - if isGoModulePath(node.CodeLocation().FileName, "github.com/openshift/origin", "test") && !strings.Contains(name, "[Suite:openshift") { - name += " [Suite:openshift]" - } if isGoModulePath(node.CodeLocation().FileName, "k8s.io/kubernetes", "test/e2e") { name += " [Suite:k8s]" } diff --git a/vendor/modules.txt b/vendor/modules.txt index 287fa0a9b48c..05fa67e95467 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -37,6 +37,7 @@ github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/mock # github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab => github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab github.com/JeffAshton/win_pdh # github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd => github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd +## explicit github.com/MakeNowJust/heredoc # github.com/Microsoft/go-winio v0.4.15-0.20200113171025-3fe6c5262873 => github.com/Microsoft/go-winio v0.4.14 github.com/Microsoft/go-winio @@ -67,13 +68,17 @@ github.com/PuerkitoBio/purell # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 => github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 github.com/PuerkitoBio/urlesc # github.com/RangelReale/osincli v0.0.0-20160924135400-fababb0555f2 +## explicit github.com/RangelReale/osincli # github.com/apparentlymart/go-cidr v1.0.1 +## explicit github.com/apparentlymart/go-cidr/cidr # github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e => github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e github.com/armon/circbuf # github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a => github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a github.com/asaskevich/govalidator +# github.com/auth0/go-jwt-middleware v0.0.0-00010101000000-000000000000 => github.com/auth0/go-jwt-middleware v0.0.0-20170425171159-5493cabe49f7 +## explicit # github.com/aws/aws-sdk-go v1.28.2 => github.com/aws/aws-sdk-go v1.28.2 github.com/aws/aws-sdk-go/aws github.com/aws/aws-sdk-go/aws/awserr @@ -120,6 +125,8 @@ github.com/aws/aws-sdk-go/service/sts/stsiface github.com/beorn7/perks/quantile # github.com/blang/semver v3.5.0+incompatible => github.com/blang/semver v3.5.0+incompatible github.com/blang/semver +# github.com/boltdb/bolt v0.0.0-00010101000000-000000000000 => github.com/boltdb/bolt v1.3.1 +## explicit # github.com/certifi/gocertifi v0.0.0-20180905225744-ee1a9a0726d2 github.com/certifi/gocertifi # github.com/cespare/xxhash/v2 v2.1.1 @@ -134,6 +141,8 @@ github.com/cilium/ebpf/internal github.com/cilium/ebpf/internal/unix # github.com/clusterhq/flocker-go v0.0.0-20160920122132-2b8b7259d313 => github.com/clusterhq/flocker-go v0.0.0-20160920122132-2b8b7259d313 github.com/clusterhq/flocker-go +# github.com/codegangsta/negroni v0.0.0-00010101000000-000000000000 => github.com/codegangsta/negroni v1.0.0 +## explicit # github.com/container-storage-interface/spec v1.2.0 => github.com/container-storage-interface/spec v1.2.0 github.com/container-storage-interface/spec/lib/go/csi # github.com/containerd/console v1.0.0 @@ -176,10 +185,12 @@ github.com/coreos/pkg/capnslog # github.com/cyphar/filepath-securejoin v0.2.2 => github.com/cyphar/filepath-securejoin v0.2.2 github.com/cyphar/filepath-securejoin # github.com/davecgh/go-spew v1.1.1 => github.com/davecgh/go-spew v1.1.1 +## explicit github.com/davecgh/go-spew/spew # github.com/dgrijalva/jwt-go v3.2.0+incompatible => github.com/dgrijalva/jwt-go v3.2.0+incompatible github.com/dgrijalva/jwt-go # github.com/docker/distribution v2.7.1+incompatible => github.com/docker/distribution v2.7.1+incompatible +## explicit github.com/docker/distribution github.com/docker/distribution/digestset github.com/docker/distribution/manifest @@ -255,12 +266,15 @@ github.com/fatih/camelcase # github.com/fsnotify/fsnotify v1.4.9 => github.com/fsnotify/fsnotify v1.4.7 github.com/fsnotify/fsnotify # github.com/fsouza/go-dockerclient v1.6.5 +## explicit github.com/fsouza/go-dockerclient # github.com/getsentry/raven-go v0.0.0-20190513200303-c977f96e1095 github.com/getsentry/raven-go # github.com/ghodss/yaml v1.0.0 => github.com/ghodss/yaml v1.0.0 +## explicit github.com/ghodss/yaml # github.com/go-bindata/go-bindata v3.1.2+incompatible => github.com/go-bindata/go-bindata v3.1.1+incompatible +## explicit github.com/go-bindata/go-bindata github.com/go-bindata/go-bindata/go-bindata # github.com/go-logr/logr v0.2.0 => github.com/go-logr/logr v0.2.0 @@ -287,6 +301,7 @@ github.com/go-openapi/swag # github.com/go-openapi/validate v0.19.5 => github.com/go-openapi/validate v0.19.5 github.com/go-openapi/validate # github.com/go-ozzo/ozzo-validation v0.0.0-00010101000000-000000000000 => github.com/go-ozzo/ozzo-validation v3.5.0+incompatible +## explicit github.com/go-ozzo/ozzo-validation github.com/go-ozzo/ozzo-validation/is # github.com/go-stack/stack v1.8.0 => github.com/go-stack/stack v1.8.0 @@ -304,6 +319,7 @@ github.com/golang/groupcache/lru # github.com/golang/mock v1.3.1 => github.com/golang/mock v1.3.1 github.com/golang/mock/gomock # github.com/golang/protobuf v1.4.2 => github.com/golang/protobuf v1.3.2 +## explicit github.com/golang/protobuf/jsonpb github.com/golang/protobuf/proto github.com/golang/protobuf/protoc-gen-go/descriptor @@ -363,18 +379,22 @@ github.com/google/cadvisor/version github.com/google/cadvisor/watcher github.com/google/cadvisor/zfs # github.com/google/go-cmp v0.4.0 => github.com/google/go-cmp v0.3.0 +## explicit github.com/google/go-cmp/cmp github.com/google/go-cmp/cmp/internal/diff github.com/google/go-cmp/cmp/internal/flags github.com/google/go-cmp/cmp/internal/function github.com/google/go-cmp/cmp/internal/value # github.com/google/go-github v17.0.0+incompatible => github.com/google/go-github v17.0.0+incompatible +## explicit github.com/google/go-github/github # github.com/google/go-querystring v0.0.0-00010101000000-000000000000 => github.com/google/go-querystring v1.0.0 +## explicit github.com/google/go-querystring/query # github.com/google/gofuzz v1.1.0 => github.com/google/gofuzz v1.1.0 github.com/google/gofuzz # github.com/google/uuid v1.1.1 => github.com/google/uuid v1.1.1 +## explicit github.com/google/uuid # github.com/googleapis/gax-go/v2 v2.0.5 => github.com/googleapis/gax-go/v2 v2.0.4 github.com/googleapis/gax-go/v2 @@ -414,6 +434,8 @@ github.com/gophercloud/gophercloud/openstack/networking/v2/networks github.com/gophercloud/gophercloud/openstack/networking/v2/ports github.com/gophercloud/gophercloud/openstack/utils github.com/gophercloud/gophercloud/pagination +# github.com/gorilla/context v0.0.0-00010101000000-000000000000 => github.com/gorilla/context v1.1.1 +## explicit # github.com/gorilla/websocket v1.4.0 => github.com/gorilla/websocket v1.4.0 github.com/gorilla/websocket # github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 => github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 @@ -445,6 +467,8 @@ github.com/hashicorp/hcl/json/token github.com/heketi/heketi/client/api/go-client github.com/heketi/heketi/pkg/glusterfs/api github.com/heketi/heketi/pkg/utils +# github.com/heketi/tests v0.0.0-00010101000000-000000000000 => github.com/heketi/tests v0.0.0-20151005000721-f3775cbcefd6 +## explicit # github.com/hpcloud/tail v1.0.0 => github.com/hpcloud/tail v1.0.0 github.com/hpcloud/tail github.com/hpcloud/tail/ratelimiter @@ -470,15 +494,24 @@ github.com/kevinburke/ssh_config # github.com/konsorten/go-windows-terminal-sequences v1.0.1 => github.com/konsorten/go-windows-terminal-sequences v1.0.1 github.com/konsorten/go-windows-terminal-sequences # github.com/lestrrat-go/jspointer v0.0.0-20181205001929-82fadba7561c +## explicit github.com/lestrrat-go/jspointer # github.com/lestrrat-go/jsref v0.0.0-20181205001954-1b590508f37d +## explicit github.com/lestrrat-go/jsref github.com/lestrrat-go/jsref/provider +# github.com/lestrrat-go/jsschema v0.0.0-20181205002244-5c81c58ffcc3 +## explicit +# github.com/lestrrat-go/jsval v0.0.0-20181205002323-20277e9befc0 +## explicit # github.com/lestrrat-go/pdebug v0.0.0-20200204225717-4d6bd78da58d +## explicit github.com/lestrrat-go/pdebug # github.com/lestrrat-go/structinfo v0.0.0-20190212233437-acd51874663b +## explicit github.com/lestrrat-go/structinfo # github.com/lestrrat/go-jsschema v0.0.0-20181205002244-5c81c58ffcc3 +## explicit github.com/lestrrat/go-jsschema # github.com/libopenstorage/openstorage v1.0.0 => github.com/libopenstorage/openstorage v1.0.0 github.com/libopenstorage/openstorage/api @@ -492,6 +525,8 @@ github.com/libopenstorage/openstorage/volume github.com/liggitt/tabwriter # github.com/lithammer/dedent v1.1.0 => github.com/lithammer/dedent v1.1.0 github.com/lithammer/dedent +# github.com/lpabon/godbc v0.0.0-00010101000000-000000000000 => github.com/lpabon/godbc v0.1.1 +## explicit # github.com/magiconair/properties v1.8.0 => github.com/magiconair/properties v1.8.1 github.com/magiconair/properties # github.com/mailru/easyjson v0.7.0 => github.com/mailru/easyjson v0.7.0 @@ -524,6 +559,7 @@ github.com/modern-go/concurrent # github.com/modern-go/reflect2 v1.0.1 => github.com/modern-go/reflect2 v1.0.1 github.com/modern-go/reflect2 # github.com/mohae/deepcopy v0.0.0-00010101000000-000000000000 => github.com/mohae/deepcopy v0.0.0-20170603005431-491d3605edfb +## explicit github.com/mohae/deepcopy # github.com/morikuni/aec v1.0.0 => github.com/morikuni/aec v1.0.0 github.com/morikuni/aec @@ -534,6 +570,7 @@ github.com/munnerz/goautoneg # github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f => github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f github.com/mxk/go-flowrate/flowrate # github.com/onsi/ginkgo v4.5.0-origin.1+incompatible => github.com/openshift/onsi-ginkgo v4.5.0-origin.1+incompatible +## explicit github.com/onsi/ginkgo github.com/onsi/ginkgo/config github.com/onsi/ginkgo/extensions/table @@ -554,6 +591,7 @@ github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty github.com/onsi/ginkgo/types # github.com/onsi/gomega v1.7.0 => github.com/onsi/gomega v1.7.0 +## explicit github.com/onsi/gomega github.com/onsi/gomega/format github.com/onsi/gomega/gstruct @@ -569,6 +607,7 @@ github.com/onsi/gomega/matchers/support/goraph/node github.com/onsi/gomega/matchers/support/goraph/util github.com/onsi/gomega/types # github.com/opencontainers/go-digest v1.0.0-rc1 +## explicit github.com/opencontainers/go-digest # github.com/opencontainers/image-spec v1.0.1 github.com/opencontainers/image-spec/specs-go @@ -602,6 +641,7 @@ github.com/opencontainers/selinux/go-selinux github.com/opencontainers/selinux/go-selinux/label github.com/opencontainers/selinux/pkg/pwalk # github.com/openshift/api v0.0.0-20200829102639-8a3a835f1acf +## explicit github.com/openshift/api github.com/openshift/api/annotations github.com/openshift/api/apps @@ -657,6 +697,7 @@ github.com/openshift/api/unidling/v1alpha1 github.com/openshift/api/user github.com/openshift/api/user/v1 # github.com/openshift/apiserver-library-go v0.0.0-20200901140731-1236dc23c728 +## explicit github.com/openshift/apiserver-library-go/pkg/admission/imagepolicy github.com/openshift/apiserver-library-go/pkg/admission/imagepolicy/apis/imagepolicy/v1 github.com/openshift/apiserver-library-go/pkg/admission/imagepolicy/apis/imagepolicy/validation @@ -675,6 +716,7 @@ github.com/openshift/apiserver-library-go/pkg/securitycontextconstraints/user github.com/openshift/apiserver-library-go/pkg/securitycontextconstraints/util github.com/openshift/apiserver-library-go/pkg/securitycontextconstraints/util/sort # github.com/openshift/build-machinery-go v0.0.0-20200819073603-48aa266c95f7 +## explicit github.com/openshift/build-machinery-go github.com/openshift/build-machinery-go/make github.com/openshift/build-machinery-go/make/lib @@ -684,6 +726,7 @@ github.com/openshift/build-machinery-go/make/targets/openshift github.com/openshift/build-machinery-go/make/targets/openshift/operator github.com/openshift/build-machinery-go/scripts # github.com/openshift/client-go v0.0.0-20200827190008-3062137373b5 +## explicit github.com/openshift/client-go/apps/clientset/versioned github.com/openshift/client-go/apps/clientset/versioned/scheme github.com/openshift/client-go/apps/clientset/versioned/typed/apps/v1 @@ -750,6 +793,7 @@ github.com/openshift/client-go/user/informers/externalversions/user github.com/openshift/client-go/user/informers/externalversions/user/v1 github.com/openshift/client-go/user/listers/user/v1 # github.com/openshift/library-go v0.0.0-20200902112127-a4e32e339219 +## explicit github.com/openshift/library-go/pkg/apiserver/admission/admissionrestconfig github.com/openshift/library-go/pkg/apiserver/admission/admissiontimeout github.com/openshift/library-go/pkg/apiserver/apiserverconfig @@ -792,6 +836,7 @@ github.com/openshift/library-go/pkg/security/uid github.com/openshift/library-go/pkg/serviceability github.com/openshift/library-go/pkg/template/templateprocessingclient # github.com/pborman/uuid v1.2.0 +## explicit github.com/pborman/uuid # github.com/pelletier/go-toml v1.2.0 => github.com/pelletier/go-toml v1.2.0 github.com/pelletier/go-toml @@ -804,9 +849,11 @@ github.com/pkg/profile # github.com/pmezard/go-difflib v1.0.0 => github.com/pmezard/go-difflib v1.0.0 github.com/pmezard/go-difflib/difflib # github.com/pquerna/cachecontrol v0.0.0-00010101000000-000000000000 => github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021 +## explicit github.com/pquerna/cachecontrol github.com/pquerna/cachecontrol/cacheobject # github.com/prometheus/client_golang v1.7.1 +## explicit github.com/prometheus/client_golang/api github.com/prometheus/client_golang/api/prometheus/v1 github.com/prometheus/client_golang/prometheus @@ -815,8 +862,10 @@ github.com/prometheus/client_golang/prometheus/promhttp github.com/prometheus/client_golang/prometheus/testutil github.com/prometheus/client_golang/prometheus/testutil/promlint # github.com/prometheus/client_model v0.2.0 +## explicit github.com/prometheus/client_model/go # github.com/prometheus/common v0.10.0 +## explicit github.com/prometheus/common/expfmt github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg github.com/prometheus/common/model @@ -848,12 +897,15 @@ github.com/spf13/afero/mem # github.com/spf13/cast v1.3.0 => github.com/spf13/cast v1.3.0 github.com/spf13/cast # github.com/spf13/cobra v1.0.0 => github.com/spf13/cobra v0.0.5 +## explicit github.com/spf13/cobra # github.com/spf13/jwalterweatherman v1.0.0 => github.com/spf13/jwalterweatherman v1.1.0 github.com/spf13/jwalterweatherman # github.com/spf13/pflag v1.0.5 => github.com/spf13/pflag v1.0.5 +## explicit github.com/spf13/pflag # github.com/spf13/viper v1.4.0 => github.com/spf13/viper v1.3.2 +## explicit github.com/spf13/viper # github.com/src-d/gcfg v1.4.0 github.com/src-d/gcfg @@ -866,8 +918,10 @@ github.com/storageos/go-api/netutil github.com/storageos/go-api/serror github.com/storageos/go-api/types # github.com/stretchr/objx v0.2.0 => github.com/stretchr/objx v0.2.0 +## explicit github.com/stretchr/objx # github.com/stretchr/testify v1.4.0 => github.com/stretchr/testify v1.4.0 +## explicit github.com/stretchr/testify/assert github.com/stretchr/testify/mock github.com/stretchr/testify/require @@ -878,6 +932,8 @@ github.com/thecodeteam/goscaleio github.com/thecodeteam/goscaleio/types/v1 # github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8 => github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8 github.com/tmc/grpc-websocket-proxy/wsproxy +# github.com/urfave/negroni v0.0.0-00010101000000-000000000000 => github.com/urfave/negroni v1.0.0 +## explicit # github.com/vishvananda/netlink v1.1.0 github.com/vishvananda/netlink github.com/vishvananda/netlink/nl @@ -913,11 +969,14 @@ github.com/vmware/govmomi/vim25/types github.com/vmware/govmomi/vim25/xml # github.com/xanzy/ssh-agent v0.2.1 github.com/xanzy/ssh-agent +# github.com/xeipuuv/gojsonschema v1.2.0 +## explicit # github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 => github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 github.com/xiang90/probing # go.etcd.io/bbolt v1.3.5 => go.etcd.io/bbolt v1.3.3 go.etcd.io/bbolt # go.etcd.io/etcd v3.3.17+incompatible => go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738 +## explicit go.etcd.io/etcd/auth go.etcd.io/etcd/auth/authpb go.etcd.io/etcd/client @@ -1037,6 +1096,7 @@ go.uber.org/zap/internal/color go.uber.org/zap/internal/exit go.uber.org/zap/zapcore # golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 => golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 +## explicit golang.org/x/crypto/bcrypt golang.org/x/crypto/blowfish golang.org/x/crypto/cast5 @@ -1065,6 +1125,7 @@ golang.org/x/crypto/ssh/internal/bcrypt_pbkdf golang.org/x/crypto/ssh/knownhosts golang.org/x/crypto/ssh/terminal # golang.org/x/net v0.0.0-20200707034311-ab3426394381 => golang.org/x/net v0.0.0-20191004110552-13f9640d40b9 +## explicit golang.org/x/net/bpf golang.org/x/net/context golang.org/x/net/context/ctxhttp @@ -1085,6 +1146,7 @@ golang.org/x/net/proxy golang.org/x/net/trace golang.org/x/net/websocket # golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 => golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 +## explicit golang.org/x/oauth2 golang.org/x/oauth2/google golang.org/x/oauth2/internal @@ -1158,6 +1220,7 @@ google.golang.org/genproto/googleapis/api/httpbody google.golang.org/genproto/googleapis/rpc/status google.golang.org/genproto/protobuf/field_mask # google.golang.org/grpc v1.27.1 => google.golang.org/grpc v1.26.0 +## explicit google.golang.org/grpc google.golang.org/grpc/attributes google.golang.org/grpc/backoff @@ -1226,6 +1289,7 @@ gopkg.in/src-d/go-billy.v4/helper/polyfill gopkg.in/src-d/go-billy.v4/osfs gopkg.in/src-d/go-billy.v4/util # gopkg.in/src-d/go-git.v4 v4.13.1 +## explicit gopkg.in/src-d/go-git.v4 gopkg.in/src-d/go-git.v4/config gopkg.in/src-d/go-git.v4/internal/revision @@ -1272,8 +1336,10 @@ gopkg.in/tomb.v1 # gopkg.in/warnings.v0 v0.1.2 => gopkg.in/warnings.v0 v0.1.1 gopkg.in/warnings.v0 # gopkg.in/yaml.v2 v2.3.0 => gopkg.in/yaml.v2 v2.2.8 +## explicit gopkg.in/yaml.v2 # k8s.io/api v0.19.0 => k8s.io/api v0.19.0-rc.2 +## explicit k8s.io/api/admission/v1 k8s.io/api/admission/v1beta1 k8s.io/api/admissionregistration/v1 @@ -1319,6 +1385,7 @@ k8s.io/api/storage/v1 k8s.io/api/storage/v1alpha1 k8s.io/api/storage/v1beta1 # k8s.io/apiextensions-apiserver v0.19.0 => k8s.io/apiextensions-apiserver v0.19.0-rc.2 +## explicit k8s.io/apiextensions-apiserver/pkg/apihelpers k8s.io/apiextensions-apiserver/pkg/apis/apiextensions k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/install @@ -1362,6 +1429,7 @@ k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition k8s.io/apiextensions-apiserver/test/integration k8s.io/apiextensions-apiserver/test/integration/fixtures # k8s.io/apimachinery v0.19.0 => k8s.io/apimachinery v0.19.0-rc.2 +## explicit k8s.io/apimachinery/pkg/api/apitesting k8s.io/apimachinery/pkg/api/equality k8s.io/apimachinery/pkg/api/errors @@ -1424,7 +1492,8 @@ k8s.io/apimachinery/pkg/watch k8s.io/apimachinery/third_party/forked/golang/json k8s.io/apimachinery/third_party/forked/golang/netutil k8s.io/apimachinery/third_party/forked/golang/reflect -# k8s.io/apiserver v0.19.0 => github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20200925093421-31bf081b178d +# k8s.io/apiserver v0.19.0 => github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20200929205038-beb741bdf00a +## explicit k8s.io/apiserver/pkg/admission k8s.io/apiserver/pkg/admission/configuration k8s.io/apiserver/pkg/admission/initializer @@ -1555,6 +1624,7 @@ k8s.io/apiserver/plugin/pkg/authenticator/token/oidc k8s.io/apiserver/plugin/pkg/authenticator/token/webhook k8s.io/apiserver/plugin/pkg/authorizer/webhook # k8s.io/cli-runtime v0.19.0-rc.2 => k8s.io/cli-runtime v0.19.0-rc.2 +## explicit k8s.io/cli-runtime/pkg/genericclioptions k8s.io/cli-runtime/pkg/kustomize k8s.io/cli-runtime/pkg/kustomize/k8sdeps @@ -1567,7 +1637,8 @@ k8s.io/cli-runtime/pkg/kustomize/k8sdeps/transformer/patch k8s.io/cli-runtime/pkg/kustomize/k8sdeps/validator k8s.io/cli-runtime/pkg/printers k8s.io/cli-runtime/pkg/resource -# k8s.io/client-go v0.19.0 => github.com/openshift/kubernetes/staging/src/k8s.io/client-go v0.0.0-20200925093421-31bf081b178d +# k8s.io/client-go v0.19.0 => github.com/openshift/kubernetes/staging/src/k8s.io/client-go v0.0.0-20200929205038-beb741bdf00a +## explicit k8s.io/client-go/discovery k8s.io/client-go/discovery/cached k8s.io/client-go/discovery/cached/disk @@ -1812,7 +1883,7 @@ k8s.io/client-go/util/jsonpath k8s.io/client-go/util/keyutil k8s.io/client-go/util/retry k8s.io/client-go/util/workqueue -# k8s.io/cloud-provider v0.19.0-rc.2 => github.com/openshift/kubernetes/staging/src/k8s.io/cloud-provider v0.0.0-20200925093421-31bf081b178d +# k8s.io/cloud-provider v0.19.0-rc.2 => github.com/openshift/kubernetes/staging/src/k8s.io/cloud-provider v0.0.0-20200929205038-beb741bdf00a k8s.io/cloud-provider k8s.io/cloud-provider/api k8s.io/cloud-provider/node/helpers @@ -1826,6 +1897,7 @@ k8s.io/cluster-bootstrap/token/util k8s.io/cluster-bootstrap/util/secrets k8s.io/cluster-bootstrap/util/tokens # k8s.io/component-base v0.19.0 => k8s.io/component-base v0.19.0-rc.2 +## explicit k8s.io/component-base/cli/flag k8s.io/component-base/cli/globalflag k8s.io/component-base/codec @@ -1852,10 +1924,11 @@ k8s.io/cri-api/pkg/apis/runtime/v1alpha2 k8s.io/csi-translation-lib k8s.io/csi-translation-lib/plugins # k8s.io/klog v1.0.0 => k8s.io/klog v1.0.0 +## explicit k8s.io/klog # k8s.io/klog/v2 v2.3.0 k8s.io/klog/v2 -# k8s.io/kube-aggregator v0.19.0 => github.com/openshift/kubernetes/staging/src/k8s.io/kube-aggregator v0.0.0-20200925093421-31bf081b178d +# k8s.io/kube-aggregator v0.19.0 => github.com/openshift/kubernetes/staging/src/k8s.io/kube-aggregator v0.0.0-20200929205038-beb741bdf00a k8s.io/kube-aggregator/pkg/apis/apiregistration k8s.io/kube-aggregator/pkg/apis/apiregistration/install k8s.io/kube-aggregator/pkg/apis/apiregistration/v1 @@ -1884,6 +1957,7 @@ k8s.io/kube-aggregator/pkg/registry/apiservice k8s.io/kube-aggregator/pkg/registry/apiservice/etcd k8s.io/kube-aggregator/pkg/registry/apiservice/rest # k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6 +## explicit k8s.io/kube-openapi/pkg/aggregator k8s.io/kube-openapi/pkg/builder k8s.io/kube-openapi/pkg/common @@ -1898,6 +1972,7 @@ k8s.io/kube-proxy/config/v1alpha1 # k8s.io/kube-scheduler v0.0.0 => k8s.io/kube-scheduler v0.19.0-rc.2 k8s.io/kube-scheduler/extender/v1 # k8s.io/kubectl v0.0.0 => k8s.io/kubectl v0.19.0-rc.2 +## explicit k8s.io/kubectl/pkg/apps k8s.io/kubectl/pkg/cmd/util k8s.io/kubectl/pkg/describe @@ -1921,10 +1996,12 @@ k8s.io/kubectl/pkg/util/templates k8s.io/kubectl/pkg/util/term k8s.io/kubectl/pkg/validation # k8s.io/kubelet v0.0.0 => k8s.io/kubelet v0.19.0-rc.2 +## explicit k8s.io/kubelet/config/v1beta1 k8s.io/kubelet/pkg/apis/deviceplugin/v1beta1 k8s.io/kubelet/pkg/apis/pluginregistration/v1 -# k8s.io/kubernetes v1.19.0 => github.com/openshift/kubernetes v1.20.0-alpha.0.0.20200925093421-31bf081b178d +# k8s.io/kubernetes v1.19.0 => github.com/openshift/kubernetes v1.20.0-alpha.0.0.20200929205038-beb741bdf00a +## explicit k8s.io/kubernetes/cmd/kube-apiserver/app k8s.io/kubernetes/cmd/kube-apiserver/app/options k8s.io/kubernetes/cmd/kube-proxy/app @@ -2674,7 +2751,8 @@ k8s.io/kubernetes/third_party/forked/gonum/graph k8s.io/kubernetes/third_party/forked/gonum/graph/internal/linear k8s.io/kubernetes/third_party/forked/gonum/graph/simple k8s.io/kubernetes/third_party/forked/gonum/graph/traverse -# k8s.io/legacy-cloud-providers v0.0.0 => github.com/openshift/kubernetes/staging/src/k8s.io/legacy-cloud-providers v0.0.0-20200925093421-31bf081b178d +# k8s.io/legacy-cloud-providers v0.0.0 => github.com/openshift/kubernetes/staging/src/k8s.io/legacy-cloud-providers v0.0.0-20200929205038-beb741bdf00a +## explicit k8s.io/legacy-cloud-providers/aws k8s.io/legacy-cloud-providers/azure k8s.io/legacy-cloud-providers/azure/auth @@ -2778,4 +2856,392 @@ sigs.k8s.io/structured-merge-diff/v4/schema sigs.k8s.io/structured-merge-diff/v4/typed sigs.k8s.io/structured-merge-diff/v4/value # sigs.k8s.io/yaml v1.2.0 => sigs.k8s.io/yaml v1.2.0 +## explicit sigs.k8s.io/yaml +# bitbucket.org/bertimus9/systemstat => bitbucket.org/bertimus9/systemstat v0.0.0-20180207000608-0eeff89b0690 +# cloud.google.com/go => cloud.google.com/go v0.38.0 +# github.com/BurntSushi/toml => github.com/BurntSushi/toml v0.3.1 +# github.com/BurntSushi/xgb => github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802 +# github.com/GoogleCloudPlatform/k8s-cloud-provider => github.com/GoogleCloudPlatform/k8s-cloud-provider v0.0.0-20190822182118-27a4ced34534 +# github.com/JeffAshton/win_pdh => github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab +# github.com/MakeNowJust/heredoc => github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd +# github.com/Microsoft/go-winio => github.com/Microsoft/go-winio v0.4.14 +# github.com/Microsoft/hcsshim => github.com/Microsoft/hcsshim v0.0.0-20190417211021-672e52e9209d +# github.com/NYTimes/gziphandler => github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46 +# github.com/OpenPeeDeeP/depguard => github.com/OpenPeeDeeP/depguard v1.0.1 +# github.com/PuerkitoBio/purell => github.com/PuerkitoBio/purell v1.1.1 +# github.com/PuerkitoBio/urlesc => github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 +# github.com/Rican7/retry => github.com/Rican7/retry v0.1.0 +# github.com/StackExchange/wmi => github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 +# github.com/agnivade/levenshtein => github.com/agnivade/levenshtein v1.0.1 +# github.com/ajstarks/svgo => github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af +# github.com/alecthomas/template => github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc +# github.com/alecthomas/units => github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf +# github.com/andreyvit/diff => github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 +# github.com/anmitsu/go-shlex => github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 +# github.com/armon/circbuf => github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e +# github.com/armon/consul-api => github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 +# github.com/asaskevich/govalidator => github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a +# github.com/auth0/go-jwt-middleware => github.com/auth0/go-jwt-middleware v0.0.0-20170425171159-5493cabe49f7 +# github.com/aws/aws-sdk-go => github.com/aws/aws-sdk-go v1.28.2 +# github.com/bazelbuild/bazel-gazelle => github.com/bazelbuild/bazel-gazelle v0.19.1-0.20191105222053-70208cbdc798 +# github.com/bazelbuild/buildtools => github.com/bazelbuild/buildtools v0.0.0-20190917191645-69366ca98f89 +# github.com/bazelbuild/rules_go => github.com/bazelbuild/rules_go v0.0.0-20190719190356-6dae44dc5cab +# github.com/beorn7/perks => github.com/beorn7/perks v1.0.0 +# github.com/bgentry/speakeasy => github.com/bgentry/speakeasy v0.1.0 +# github.com/bifurcation/mint => github.com/bifurcation/mint v0.0.0-20180715133206-93c51c6ce115 +# github.com/blang/semver => github.com/blang/semver v3.5.0+incompatible +# github.com/boltdb/bolt => github.com/boltdb/bolt v1.3.1 +# github.com/bradfitz/go-smtpd => github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625 +# github.com/caddyserver/caddy => github.com/caddyserver/caddy v1.0.3 +# github.com/cenkalti/backoff => github.com/cenkalti/backoff v2.1.1+incompatible +# github.com/census-instrumentation/opencensus-proto => github.com/census-instrumentation/opencensus-proto v0.2.1 +# github.com/cespare/prettybench => github.com/cespare/prettybench v0.0.0-20150116022406-03b8cfe5406c +# github.com/chai2010/gettext-go => github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 +# github.com/checkpoint-restore/go-criu => github.com/checkpoint-restore/go-criu v0.0.0-20181120144056-17b0214f6c48 +# github.com/cheekybits/genny => github.com/cheekybits/genny v0.0.0-20170328200008-9127e812e1e9 +# github.com/cilium/ebpf => github.com/cilium/ebpf v0.0.0-20191025125908-95b36a581eed +# github.com/client9/misspell => github.com/client9/misspell v0.3.4 +# github.com/clusterhq/flocker-go => github.com/clusterhq/flocker-go v0.0.0-20160920122132-2b8b7259d313 +# github.com/cockroachdb/datadriven => github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa +# github.com/codegangsta/negroni => github.com/codegangsta/negroni v1.0.0 +# github.com/container-storage-interface/spec => github.com/container-storage-interface/spec v1.2.0 +# github.com/containernetworking/cni => github.com/containernetworking/cni v0.7.1 +# github.com/coredns/corefile-migration => github.com/coredns/corefile-migration v1.0.6 +# github.com/coreos/etcd => github.com/coreos/etcd v3.3.10+incompatible +# github.com/coreos/go-etcd => github.com/coreos/go-etcd v2.0.0+incompatible +# github.com/coreos/go-oidc => github.com/coreos/go-oidc v2.1.0+incompatible +# github.com/coreos/go-semver => github.com/coreos/go-semver v0.3.0 +# github.com/coreos/go-systemd => github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e +# github.com/coreos/pkg => github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea +# github.com/cpuguy83/go-md2man => github.com/cpuguy83/go-md2man v1.0.10 +# github.com/creack/pty => github.com/creack/pty v1.1.7 +# github.com/cyphar/filepath-securejoin => github.com/cyphar/filepath-securejoin v0.2.2 +# github.com/davecgh/go-spew => github.com/davecgh/go-spew v1.1.1 +# github.com/daviddengcn/go-colortext => github.com/daviddengcn/go-colortext v0.0.0-20160507010035-511bcaf42ccd +# github.com/dgrijalva/jwt-go => github.com/dgrijalva/jwt-go v3.2.0+incompatible +# github.com/dnaeon/go-vcr => github.com/dnaeon/go-vcr v1.0.1 +# github.com/docker/distribution => github.com/docker/distribution v2.7.1+incompatible +# github.com/docker/docker => github.com/docker/docker v0.7.3-0.20190327010347-be7ac8be2ae0 +# github.com/docker/go-connections => github.com/docker/go-connections v0.3.0 +# github.com/docker/go-units => github.com/docker/go-units v0.4.0 +# github.com/docker/spdystream => github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96 +# github.com/dustin/go-humanize => github.com/dustin/go-humanize v1.0.0 +# github.com/elazarl/goproxy => github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153 +# github.com/emicklei/go-restful => github.com/emicklei/go-restful v2.9.5+incompatible +# github.com/envoyproxy/go-control-plane => github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473 +# github.com/envoyproxy/protoc-gen-validate => github.com/envoyproxy/protoc-gen-validate v0.1.0 +# github.com/euank/go-kmsg-parser => github.com/euank/go-kmsg-parser v2.0.0+incompatible +# github.com/evanphx/json-patch => github.com/evanphx/json-patch v4.2.0+incompatible +# github.com/exponent-io/jsonpath => github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d +# github.com/fatih/camelcase => github.com/fatih/camelcase v1.0.0 +# github.com/fatih/color => github.com/fatih/color v1.7.0 +# github.com/flynn/go-shlex => github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 +# github.com/fogleman/gg => github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90 +# github.com/fsnotify/fsnotify => github.com/fsnotify/fsnotify v1.4.7 +# github.com/ghodss/yaml => github.com/ghodss/yaml v1.0.0 +# github.com/gliderlabs/ssh => github.com/gliderlabs/ssh v0.1.1 +# github.com/go-acme/lego => github.com/go-acme/lego v2.5.0+incompatible +# github.com/go-bindata/go-bindata => github.com/go-bindata/go-bindata v3.1.1+incompatible +# github.com/go-critic/go-critic => github.com/go-critic/go-critic v0.3.5-0.20190526074819-1df300866540 +# github.com/go-kit/kit => github.com/go-kit/kit v0.8.0 +# github.com/go-lintpack/lintpack => github.com/go-lintpack/lintpack v0.5.2 +# github.com/go-logfmt/logfmt => github.com/go-logfmt/logfmt v0.3.0 +# github.com/go-logr/logr => github.com/go-logr/logr v0.2.0 +# github.com/go-ole/go-ole => github.com/go-ole/go-ole v1.2.1 +# github.com/go-openapi/analysis => github.com/go-openapi/analysis v0.19.5 +# github.com/go-openapi/errors => github.com/go-openapi/errors v0.19.2 +# github.com/go-openapi/jsonpointer => github.com/go-openapi/jsonpointer v0.19.3 +# github.com/go-openapi/jsonreference => github.com/go-openapi/jsonreference v0.19.3 +# github.com/go-openapi/loads => github.com/go-openapi/loads v0.19.4 +# github.com/go-openapi/runtime => github.com/go-openapi/runtime v0.19.4 +# github.com/go-openapi/spec => github.com/go-openapi/spec v0.19.3 +# github.com/go-openapi/strfmt => github.com/go-openapi/strfmt v0.19.3 +# github.com/go-openapi/swag => github.com/go-openapi/swag v0.19.5 +# github.com/go-openapi/validate => github.com/go-openapi/validate v0.19.5 +# github.com/go-ozzo/ozzo-validation => github.com/go-ozzo/ozzo-validation v3.5.0+incompatible +# github.com/go-stack/stack => github.com/go-stack/stack v1.8.0 +# github.com/go-toolsmith/astcast => github.com/go-toolsmith/astcast v1.0.0 +# github.com/go-toolsmith/astcopy => github.com/go-toolsmith/astcopy v1.0.0 +# github.com/go-toolsmith/astequal => github.com/go-toolsmith/astequal v1.0.0 +# github.com/go-toolsmith/astfmt => github.com/go-toolsmith/astfmt v1.0.0 +# github.com/go-toolsmith/astinfo => github.com/go-toolsmith/astinfo v0.0.0-20180906194353-9809ff7efb21 +# github.com/go-toolsmith/astp => github.com/go-toolsmith/astp v1.0.0 +# github.com/go-toolsmith/pkgload => github.com/go-toolsmith/pkgload v1.0.0 +# github.com/go-toolsmith/strparse => github.com/go-toolsmith/strparse v1.0.0 +# github.com/go-toolsmith/typep => github.com/go-toolsmith/typep v1.0.0 +# github.com/gobwas/glob => github.com/gobwas/glob v0.2.3 +# github.com/godbus/dbus => github.com/godbus/dbus v0.0.0-20181101234600-2ff6f7ffd60f +# github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.1 +# github.com/golang/freetype => github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 +# github.com/golang/glog => github.com/openshift/golang-glog v0.0.0-20190322123450-3c92600d7533 +# github.com/golang/groupcache => github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903 +# github.com/golang/mock => github.com/golang/mock v1.3.1 +# github.com/golang/protobuf => github.com/golang/protobuf v1.3.2 +# github.com/golangci/check => github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 +# github.com/golangci/dupl => github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a +# github.com/golangci/errcheck => github.com/golangci/errcheck v0.0.0-20181223084120-ef45e06d44b6 +# github.com/golangci/go-misc => github.com/golangci/go-misc v0.0.0-20180628070357-927a3d87b613 +# github.com/golangci/go-tools => github.com/golangci/go-tools v0.0.0-20190318055746-e32c54105b7c +# github.com/golangci/goconst => github.com/golangci/goconst v0.0.0-20180610141641-041c5f2b40f3 +# github.com/golangci/gocyclo => github.com/golangci/gocyclo v0.0.0-20180528134321-2becd97e67ee +# github.com/golangci/gofmt => github.com/golangci/gofmt v0.0.0-20181222123516-0b8337e80d98 +# github.com/golangci/golangci-lint => github.com/golangci/golangci-lint v1.18.0 +# github.com/golangci/gosec => github.com/golangci/gosec v0.0.0-20190211064107-66fb7fc33547 +# github.com/golangci/ineffassign => github.com/golangci/ineffassign v0.0.0-20190609212857-42439a7714cc +# github.com/golangci/lint-1 => github.com/golangci/lint-1 v0.0.0-20190420132249-ee948d087217 +# github.com/golangci/maligned => github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca +# github.com/golangci/misspell => github.com/golangci/misspell v0.0.0-20180809174111-950f5d19e770 +# github.com/golangci/prealloc => github.com/golangci/prealloc v0.0.0-20180630174525-215b22d4de21 +# github.com/golangci/revgrep => github.com/golangci/revgrep v0.0.0-20180526074752-d9c87f5ffaf0 +# github.com/golangci/unconvert => github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 +# github.com/golangplus/bytes => github.com/golangplus/bytes v0.0.0-20160111154220-45c989fe5450 +# github.com/golangplus/fmt => github.com/golangplus/fmt v0.0.0-20150411045040-2a5d6d7d2995 +# github.com/golangplus/testing => github.com/golangplus/testing v0.0.0-20180327235837-af21d9c3145e +# github.com/google/btree => github.com/google/btree v1.0.0 +# github.com/google/cadvisor => github.com/google/cadvisor v0.37.0 +# github.com/google/go-cmp => github.com/google/go-cmp v0.3.0 +# github.com/google/go-github => github.com/google/go-github v17.0.0+incompatible +# github.com/google/go-querystring => github.com/google/go-querystring v1.0.0 +# github.com/google/gofuzz => github.com/google/gofuzz v1.1.0 +# github.com/google/martian => github.com/google/martian v2.1.0+incompatible +# github.com/google/pprof => github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57 +# github.com/google/renameio => github.com/google/renameio v0.1.0 +# github.com/google/uuid => github.com/google/uuid v1.1.1 +# github.com/googleapis/gax-go/v2 => github.com/googleapis/gax-go/v2 v2.0.4 +# github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.4.1 +# github.com/gophercloud/gophercloud => github.com/gophercloud/gophercloud v0.1.0 +# github.com/gopherjs/gopherjs => github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 +# github.com/gorilla/context => github.com/gorilla/context v1.1.1 +# github.com/gorilla/mux => github.com/gorilla/mux v1.7.0 +# github.com/gorilla/websocket => github.com/gorilla/websocket v1.4.0 +# github.com/gostaticanalysis/analysisutil => github.com/gostaticanalysis/analysisutil v0.0.3 +# github.com/gregjones/httpcache => github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 +# github.com/grpc-ecosystem/go-grpc-middleware => github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4 +# github.com/grpc-ecosystem/go-grpc-prometheus => github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 +# github.com/grpc-ecosystem/grpc-gateway => github.com/grpc-ecosystem/grpc-gateway v1.9.5 +# github.com/hashicorp/go-syslog => github.com/hashicorp/go-syslog v1.0.0 +# github.com/hashicorp/golang-lru => github.com/hashicorp/golang-lru v0.5.1 +# github.com/hashicorp/hcl => github.com/hashicorp/hcl v1.0.0 +# github.com/heketi/heketi => github.com/heketi/heketi v9.0.1-0.20190917153846-c2e2a4ab7ab9+incompatible +# github.com/heketi/tests => github.com/heketi/tests v0.0.0-20151005000721-f3775cbcefd6 +# github.com/hpcloud/tail => github.com/hpcloud/tail v1.0.0 +# github.com/imdario/mergo => github.com/imdario/mergo v0.3.5 +# github.com/inconshreveable/mousetrap => github.com/inconshreveable/mousetrap v1.0.0 +# github.com/jellevandenhooff/dkim => github.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1 +# github.com/jimstudt/http-authentication => github.com/jimstudt/http-authentication v0.0.0-20140401203705-3eca13d6893a +# github.com/jmespath/go-jmespath => github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af +# github.com/jonboulle/clockwork => github.com/jonboulle/clockwork v0.1.0 +# github.com/json-iterator/go => github.com/json-iterator/go v1.1.8 +# github.com/jstemmer/go-junit-report => github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024 +# github.com/jtolds/gls => github.com/jtolds/gls v4.20.0+incompatible +# github.com/julienschmidt/httprouter => github.com/julienschmidt/httprouter v1.2.0 +# github.com/jung-kurt/gofpdf => github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5 +# github.com/karrick/godirwalk => github.com/karrick/godirwalk v1.7.5 +# github.com/kisielk/errcheck => github.com/kisielk/errcheck v1.2.0 +# github.com/kisielk/gotool => github.com/kisielk/gotool v1.0.0 +# github.com/klauspost/compress => github.com/klauspost/compress v1.4.1 +# github.com/klauspost/cpuid => github.com/klauspost/cpuid v1.2.0 +# github.com/konsorten/go-windows-terminal-sequences => github.com/konsorten/go-windows-terminal-sequences v1.0.1 +# github.com/kr/logfmt => github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 +# github.com/kr/pretty => github.com/kr/pretty v0.1.0 +# github.com/kr/pty => github.com/kr/pty v1.1.5 +# github.com/kr/text => github.com/kr/text v0.1.0 +# github.com/kylelemons/godebug => github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348 +# github.com/libopenstorage/openstorage => github.com/libopenstorage/openstorage v1.0.0 +# github.com/liggitt/tabwriter => github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de +# github.com/lithammer/dedent => github.com/lithammer/dedent v1.1.0 +# github.com/logrusorgru/aurora => github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e +# github.com/lpabon/godbc => github.com/lpabon/godbc v0.1.1 +# github.com/lucas-clemente/aes12 => github.com/lucas-clemente/aes12 v0.0.0-20171027163421-cd47fb39b79f +# github.com/lucas-clemente/quic-clients => github.com/lucas-clemente/quic-clients v0.1.0 +# github.com/lucas-clemente/quic-go => github.com/lucas-clemente/quic-go v0.10.2 +# github.com/lucas-clemente/quic-go-certificates => github.com/lucas-clemente/quic-go-certificates v0.0.0-20160823095156-d2f86524cced +# github.com/magiconair/properties => github.com/magiconair/properties v1.8.1 +# github.com/mailru/easyjson => github.com/mailru/easyjson v0.7.0 +# github.com/marten-seemann/qtls => github.com/marten-seemann/qtls v0.2.3 +# github.com/mattn/go-colorable => github.com/mattn/go-colorable v0.0.9 +# github.com/mattn/go-isatty => github.com/mattn/go-isatty v0.0.9 +# github.com/mattn/go-runewidth => github.com/mattn/go-runewidth v0.0.2 +# github.com/mattn/go-shellwords => github.com/mattn/go-shellwords v1.0.5 +# github.com/mattn/goveralls => github.com/mattn/goveralls v0.0.2 +# github.com/matttproud/golang_protobuf_extensions => github.com/matttproud/golang_protobuf_extensions v1.0.1 +# github.com/mesos/mesos-go => github.com/mesos/mesos-go v0.0.9 +# github.com/mholt/certmagic => github.com/mholt/certmagic v0.6.2-0.20190624175158-6a42ef9fe8c2 +# github.com/miekg/dns => github.com/miekg/dns v1.1.4 +# github.com/mindprince/gonvml => github.com/mindprince/gonvml v0.0.0-20190828220739-9ebdce4bb989 +# github.com/mistifyio/go-zfs => github.com/mistifyio/go-zfs v2.1.1+incompatible +# github.com/mitchellh/go-homedir => github.com/mitchellh/go-homedir v1.1.0 +# github.com/mitchellh/go-ps => github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936 +# github.com/mitchellh/go-wordwrap => github.com/mitchellh/go-wordwrap v1.0.0 +# github.com/mitchellh/mapstructure => github.com/mitchellh/mapstructure v1.1.2 +# github.com/moby/ipvs => github.com/moby/ipvs v1.0.1 +# github.com/moby/sys/mountinfo => github.com/moby/sys/mountinfo v0.1.3 +# github.com/moby/term => github.com/moby/term v0.0.0-20200312100748-672ec06f55cd +# github.com/modern-go/concurrent => github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd +# github.com/modern-go/reflect2 => github.com/modern-go/reflect2 v1.0.1 +# github.com/mohae/deepcopy => github.com/mohae/deepcopy v0.0.0-20170603005431-491d3605edfb +# github.com/morikuni/aec => github.com/morikuni/aec v1.0.0 +# github.com/mozilla/tls-observatory => github.com/mozilla/tls-observatory v0.0.0-20180409132520-8791a200eb40 +# github.com/mrunalp/fileutils => github.com/mrunalp/fileutils v0.0.0-20171103030105-7d4729fb3618 +# github.com/munnerz/goautoneg => github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 +# github.com/mvdan/xurls => github.com/mvdan/xurls v1.1.0 +# github.com/mwitkow/go-conntrack => github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223 +# github.com/mxk/go-flowrate => github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f +# github.com/naoina/go-stringutil => github.com/naoina/go-stringutil v0.1.0 +# github.com/naoina/toml => github.com/naoina/toml v0.1.1 +# github.com/nbutton23/zxcvbn-go => github.com/nbutton23/zxcvbn-go v0.0.0-20171102151520-eafdab6b0663 +# github.com/olekukonko/tablewriter => github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5 +# github.com/onsi/ginkgo => github.com/openshift/onsi-ginkgo v4.5.0-origin.1+incompatible +# github.com/onsi/gomega => github.com/onsi/gomega v1.7.0 +# github.com/pelletier/go-toml => github.com/pelletier/go-toml v1.2.0 +# github.com/peterbourgon/diskv => github.com/peterbourgon/diskv v2.0.1+incompatible +# github.com/pkg/errors => github.com/pkg/errors v0.9.1 +# github.com/pmezard/go-difflib => github.com/pmezard/go-difflib v1.0.0 +# github.com/pquerna/cachecontrol => github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021 +# github.com/pquerna/ffjson => github.com/pquerna/ffjson v0.0.0-20180717144149-af8b230fcd20 +# github.com/quasilyte/go-consistent => github.com/quasilyte/go-consistent v0.0.0-20190521200055-c6f3937de18c +# github.com/quobyte/api => github.com/quobyte/api v0.1.2 +# github.com/remyoudompheng/bigfft => github.com/remyoudompheng/bigfft v0.0.0-20170806203942-52369c62f446 +# github.com/robfig/cron => github.com/robfig/cron v1.1.0 +# github.com/rogpeppe/fastuuid => github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af +# github.com/rogpeppe/go-internal => github.com/rogpeppe/go-internal v1.3.0 +# github.com/rubiojr/go-vhd => github.com/rubiojr/go-vhd v0.0.0-20160810183302-0bfd3b39853c +# github.com/russross/blackfriday => github.com/russross/blackfriday v1.5.2 +# github.com/ryanuber/go-glob => github.com/ryanuber/go-glob v0.0.0-20170128012129-256dc444b735 +# github.com/satori/go.uuid => github.com/satori/go.uuid v1.2.0 +# github.com/seccomp/libseccomp-golang => github.com/seccomp/libseccomp-golang v0.9.1 +# github.com/sergi/go-diff => github.com/sergi/go-diff v1.0.0 +# github.com/shirou/gopsutil => github.com/shirou/gopsutil v0.0.0-20180427012116-c95755e4bcd7 +# github.com/shirou/w32 => github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4 +# github.com/shurcooL/go => github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e +# github.com/shurcooL/go-goon => github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041 +# github.com/sirupsen/logrus => github.com/sirupsen/logrus v1.4.2 +# github.com/smartystreets/assertions => github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d +# github.com/smartystreets/goconvey => github.com/smartystreets/goconvey v1.6.4 +# github.com/soheilhy/cmux => github.com/soheilhy/cmux v0.1.4 +# github.com/sourcegraph/go-diff => github.com/sourcegraph/go-diff v0.5.1 +# github.com/spf13/afero => github.com/spf13/afero v1.2.2 +# github.com/spf13/cast => github.com/spf13/cast v1.3.0 +# github.com/spf13/cobra => github.com/spf13/cobra v0.0.5 +# github.com/spf13/jwalterweatherman => github.com/spf13/jwalterweatherman v1.1.0 +# github.com/spf13/pflag => github.com/spf13/pflag v1.0.5 +# github.com/spf13/viper => github.com/spf13/viper v1.3.2 +# github.com/storageos/go-api => github.com/storageos/go-api v0.0.0-20180912212459-343b3eff91fc +# github.com/stretchr/objx => github.com/stretchr/objx v0.2.0 +# github.com/stretchr/testify => github.com/stretchr/testify v1.4.0 +# github.com/syndtr/gocapability => github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2 +# github.com/tarm/serial => github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07 +# github.com/thecodeteam/goscaleio => github.com/thecodeteam/goscaleio v0.1.0 +# github.com/tidwall/pretty => github.com/tidwall/pretty v1.0.0 +# github.com/timakin/bodyclose => github.com/timakin/bodyclose v0.0.0-20190721030226-87058b9bfcec +# github.com/tmc/grpc-websocket-proxy => github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8 +# github.com/ugorji/go/codec => github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 +# github.com/ultraware/funlen => github.com/ultraware/funlen v0.0.2 +# github.com/urfave/cli => github.com/urfave/cli v1.20.0 +# github.com/urfave/negroni => github.com/urfave/negroni v1.0.0 +# github.com/valyala/bytebufferpool => github.com/valyala/bytebufferpool v1.0.0 +# github.com/valyala/fasthttp => github.com/valyala/fasthttp v1.2.0 +# github.com/valyala/quicktemplate => github.com/valyala/quicktemplate v1.1.1 +# github.com/valyala/tcplisten => github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a +# github.com/vektah/gqlparser => github.com/vektah/gqlparser v1.1.2 +# github.com/vishvananda/netns => github.com/vishvananda/netns v0.0.0-20171111001504-be1fbeda1936 +# github.com/vmware/govmomi => github.com/vmware/govmomi v0.20.3 +# github.com/xiang90/probing => github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 +# github.com/xlab/handysort => github.com/xlab/handysort v0.0.0-20150421192137-fb3537ed64a1 +# github.com/xordataexchange/crypt => github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 +# go.etcd.io/bbolt => go.etcd.io/bbolt v1.3.3 +# go.etcd.io/etcd => go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738 +# go.mongodb.org/mongo-driver => go.mongodb.org/mongo-driver v1.1.2 +# go.opencensus.io => go.opencensus.io v0.21.0 +# go.uber.org/atomic => go.uber.org/atomic v1.3.2 +# go.uber.org/multierr => go.uber.org/multierr v1.1.0 +# go.uber.org/zap => go.uber.org/zap v1.10.0 +# go4.org => go4.org v0.0.0-20180809161055-417644f6feb5 +# golang.org/x/build => golang.org/x/build v0.0.0-20190927031335-2835ba2e683f +# golang.org/x/crypto => golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 +# golang.org/x/exp => golang.org/x/exp v0.0.0-20190312203227-4b39c73a6495 +# golang.org/x/image => golang.org/x/image v0.0.0-20190227222117-0694c2d4d067 +# golang.org/x/lint => golang.org/x/lint v0.0.0-20190409202823-959b441ac422 +# golang.org/x/mobile => golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6 +# golang.org/x/mod => golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e +# golang.org/x/net => golang.org/x/net v0.0.0-20191004110552-13f9640d40b9 +# golang.org/x/oauth2 => golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 +# golang.org/x/perf => golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852 +# golang.org/x/sync => golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e +# golang.org/x/sys => golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a +# golang.org/x/text => golang.org/x/text v0.3.3 +# golang.org/x/time => golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 +# golang.org/x/tools => golang.org/x/tools v0.0.0-20190821162956-65e3620a7ae7 +# golang.org/x/xerrors => golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 +# gonum.org/v1/gonum => gonum.org/v1/gonum v0.6.2 +# gonum.org/v1/netlib => gonum.org/v1/netlib v0.0.0-20190331212654-76723241ea4e +# gonum.org/v1/plot => gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b +# google.golang.org/appengine => google.golang.org/appengine v1.5.0 +# google.golang.org/genproto => google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 +# google.golang.org/grpc => google.golang.org/grpc v1.26.0 +# gopkg.in/airbrake/gobrake.v2 => gopkg.in/airbrake/gobrake.v2 v2.0.9 +# gopkg.in/alecthomas/kingpin.v2 => gopkg.in/alecthomas/kingpin.v2 v2.2.6 +# gopkg.in/check.v1 => gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 +# gopkg.in/cheggaaa/pb.v1 => gopkg.in/cheggaaa/pb.v1 v1.0.25 +# gopkg.in/errgo.v2 => gopkg.in/errgo.v2 v2.1.0 +# gopkg.in/fsnotify.v1 => gopkg.in/fsnotify.v1 v1.4.7 +# gopkg.in/gcfg.v1 => gopkg.in/gcfg.v1 v1.2.0 +# gopkg.in/gemnasium/logrus-airbrake-hook.v2 => gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 +# gopkg.in/inf.v0 => gopkg.in/inf.v0 v0.9.1 +# gopkg.in/mcuadros/go-syslog.v2 => gopkg.in/mcuadros/go-syslog.v2 v2.2.1 +# gopkg.in/natefinch/lumberjack.v2 => gopkg.in/natefinch/lumberjack.v2 v2.0.0 +# gopkg.in/resty.v1 => gopkg.in/resty.v1 v1.12.0 +# gopkg.in/square/go-jose.v2 => gopkg.in/square/go-jose.v2 v2.2.2 +# gopkg.in/tomb.v1 => gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 +# gopkg.in/warnings.v0 => gopkg.in/warnings.v0 v0.1.1 +# gopkg.in/yaml.v2 => gopkg.in/yaml.v2 v2.2.8 +# gotest.tools => gotest.tools v2.2.0+incompatible +# gotest.tools/gotestsum => gotest.tools/gotestsum v0.3.5 +# grpc.go4.org => grpc.go4.org v0.0.0-20170609214715-11d0a25b4919 +# honnef.co/go/tools => honnef.co/go/tools v0.0.1-2019.2.2 +# k8s.io/api => k8s.io/api v0.19.0-rc.2 +# k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.19.0-rc.2 +# k8s.io/apimachinery => k8s.io/apimachinery v0.19.0-rc.2 +# k8s.io/apiserver => github.com/openshift/kubernetes/staging/src/k8s.io/apiserver v0.0.0-20200929205038-beb741bdf00a +# k8s.io/cli-runtime => k8s.io/cli-runtime v0.19.0-rc.2 +# k8s.io/client-go => github.com/openshift/kubernetes/staging/src/k8s.io/client-go v0.0.0-20200929205038-beb741bdf00a +# k8s.io/cloud-provider => github.com/openshift/kubernetes/staging/src/k8s.io/cloud-provider v0.0.0-20200929205038-beb741bdf00a +# k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.19.0-rc.2 +# k8s.io/code-generator => k8s.io/code-generator v0.19.0-rc.2 +# k8s.io/component-base => k8s.io/component-base v0.19.0-rc.2 +# k8s.io/cri-api => k8s.io/cri-api v0.19.0-rc.2 +# k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.19.0-rc.2 +# k8s.io/gengo => k8s.io/gengo v0.0.0-20200114144118-36b2048a9120 +# k8s.io/heapster => k8s.io/heapster v1.2.0-beta.1 +# k8s.io/klog => k8s.io/klog v1.0.0 +# k8s.io/kube-aggregator => github.com/openshift/kubernetes/staging/src/k8s.io/kube-aggregator v0.0.0-20200929205038-beb741bdf00a +# k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.19.0-rc.2 +# k8s.io/kube-proxy => k8s.io/kube-proxy v0.19.0-rc.2 +# k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.19.0-rc.2 +# k8s.io/kubectl => k8s.io/kubectl v0.19.0-rc.2 +# k8s.io/kubelet => k8s.io/kubelet v0.19.0-rc.2 +# k8s.io/kubernetes => github.com/openshift/kubernetes v1.20.0-alpha.0.0.20200929205038-beb741bdf00a +# k8s.io/legacy-cloud-providers => github.com/openshift/kubernetes/staging/src/k8s.io/legacy-cloud-providers v0.0.0-20200929205038-beb741bdf00a +# k8s.io/metrics => k8s.io/metrics v0.19.0-rc.2 +# k8s.io/repo-infra => k8s.io/repo-infra v0.0.1-alpha.1 +# k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.19.0-rc.2 +# k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.19.0-rc.2 +# k8s.io/sample-controller => k8s.io/sample-controller v0.19.0-rc.2 +# k8s.io/system-validators => k8s.io/system-validators v1.0.4 +# k8s.io/utils => k8s.io/utils v0.0.0-20200324210504-a9aa75ae1b89 +# modernc.org/cc => modernc.org/cc v1.0.0 +# modernc.org/golex => modernc.org/golex v1.0.0 +# modernc.org/mathutil => modernc.org/mathutil v1.0.0 +# modernc.org/strutil => modernc.org/strutil v1.0.0 +# modernc.org/xc => modernc.org/xc v1.0.0 +# mvdan.cc/interfacer => mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed +# mvdan.cc/lint => mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b +# mvdan.cc/unparam => mvdan.cc/unparam v0.0.0-20190209190245-fbb59629db34 +# rsc.io/pdf => rsc.io/pdf v0.1.1 +# sigs.k8s.io/apiserver-network-proxy/konnectivity-client => sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.9 +# sigs.k8s.io/kustomize => sigs.k8s.io/kustomize v2.0.3+incompatible +# sigs.k8s.io/structured-merge-diff/v3 => sigs.k8s.io/structured-merge-diff/v3 v3.0.0 +# sigs.k8s.io/yaml => sigs.k8s.io/yaml v1.2.0 +# sourcegraph.com/sqs/pbtypes => sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4 +# vbom.ml/util => vbom.ml/util v0.0.0-20160121211510-db5cfe13f5cc