mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-06 02:34:03 +00:00
Merge pull request #63624 from liggitt/discovery-cleanup
Automatic merge from submit-queue (batch tested with PRs 63624, 59847). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. continued discovery cleanup, aggregator e2e test deflaking deflakes one set of failures seen in https://github.com/kubernetes/kubernetes/issues/63622 in which the aggregator test fails because of an unrelated simultaneous CRD change made by another test ```release-note NONE ```
This commit is contained in:
commit
508510d536
@ -382,14 +382,13 @@ func TestSampleAPIServer(f *framework.Framework, image string) {
|
|||||||
flunderName = generateFlunderName("dynamic-flunder")
|
flunderName = generateFlunderName("dynamic-flunder")
|
||||||
|
|
||||||
// Rerun the Create/List/Delete tests using the Dynamic client.
|
// Rerun the Create/List/Delete tests using the Dynamic client.
|
||||||
resources, err := client.Discovery().ServerPreferredNamespacedResources()
|
resources, discoveryErr := client.Discovery().ServerPreferredNamespacedResources()
|
||||||
framework.ExpectNoError(err, "getting server preferred namespaces resources for dynamic client")
|
|
||||||
groupVersionResources, err := discovery.GroupVersionResources(resources)
|
groupVersionResources, err := discovery.GroupVersionResources(resources)
|
||||||
framework.ExpectNoError(err, "getting group version resources for dynamic client")
|
framework.ExpectNoError(err, "getting group version resources for dynamic client")
|
||||||
gvr := schema.GroupVersionResource{Group: "wardle.k8s.io", Version: "v1alpha1", Resource: "flunders"}
|
gvr := schema.GroupVersionResource{Group: "wardle.k8s.io", Version: "v1alpha1", Resource: "flunders"}
|
||||||
_, ok := groupVersionResources[gvr]
|
_, ok := groupVersionResources[gvr]
|
||||||
if !ok {
|
if !ok {
|
||||||
framework.Failf("could not find group version resource for dynamic client and wardle/flunders.")
|
framework.Failf("could not find group version resource for dynamic client and wardle/flunders (discovery error: %v, discovery results: %#v)", discoveryErr, groupVersionResources)
|
||||||
}
|
}
|
||||||
dynamicClient := f.DynamicClient.Resource(gvr).Namespace(namespace)
|
dynamicClient := f.DynamicClient.Resource(gvr).Namespace(namespace)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user