mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-12-15 20:37:39 +00:00
Automatic merge from submit-queue (batch tested with PRs 53350, 52688, 53531, 52515). 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>. Skip e2e check for logs API path if provider is skeleton There is a networking e2e test with the It() description: ``` "should provide unchanging, static URL paths for kubernetes api services" ``` This test performs GETs from the Kubernetes API using various paths, including "/logs". This test for a GET using path "/logs" should be skipped for provider type "skeleton", since this path is unsupported. This change adds "skeleton" to the list of providers for which this test case should be skipped. fixes #53529 **What this PR does / why we need it**: This change adds "skeleton" to the list of providers for which the test for an API GET using the "/logs" path should be skipped. This is needed because, as far as I can tell, the "skeleton" provider doesn't support the "/logs" api path. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #53529 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```