Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bash completion for kubectl symlinked to minikube by not adding --cluster flag for the kubectl __complete subcommand #15850

Merged

Conversation

ben-krieger
Copy link
Contributor

Fixes #14959

Before:

$ go run ./cmd/minikube kubectl __complete ge
Error: flags cannot be placed before plugin name: --cluster
exit status 1

After:

$ go run ./cmd/minikube kubectl __complete ge
get	Display one or many resources
:4
Completion ended with directive: ShellCompDirectiveNoFileComp

Signed-off-by: Ben Krieger ben.krieger@intel.com

@linux-foundation-easycla
Copy link

linux-foundation-easycla bot commented Feb 14, 2023

CLA Signed

The committers listed above are authorized under a signed CLA.

  • ✅ login: ben-krieger / name: Ben Krieger (8903037)

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: ben-krieger
Once this PR has been reviewed and has the lgtm label, please assign medyagh for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot
Copy link
Contributor

Welcome @ben-krieger!

It looks like this is your first PR to kubernetes/minikube 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes/minikube has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@k8s-ci-robot k8s-ci-robot added cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Feb 14, 2023
@k8s-ci-robot
Copy link
Contributor

Hi @ben-krieger. Thanks for your PR.

I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@k8s-ci-robot k8s-ci-robot added the size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. label Feb 14, 2023
@minikube-bot
Copy link
Collaborator

Can one of the admins verify this patch?

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. and removed cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. labels Feb 14, 2023
@@ -96,7 +96,7 @@ host. Please be aware that when using --ssh all paths will apply to the remote m
os.Exit(1)
}

if len(args) > 1 && args[0] != "--help" {
if len(args) > 1 && args[0] != "--help" && args[0] != "__complete" {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for fixing this issue, @ben-krieger
I am curious,
can we guarantee the __complete would always be args[0] ? if not maybe we can loop over the args and flag it as skip dash cluster... ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So put another way, "Are there any valid flags for kubectl when using the __complete subcommand?" That's a good question. I assumed not, but I'll check the docs/code. Then there's the question of whether we think that any such flags may get added in the future...

Copy link
Contributor Author

@ben-krieger ben-krieger Feb 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The global flags are namespace, context, cluster, and user (https://github.com/kubernetes/kubectl/blob/master/pkg/cmd/cmd.go#L499-L520). None of those make sense as flags to __complete.

But more importantly, __complete is a plugin (I guess?) and for the plugin handler code https://github.com/kubernetes/kubectl/blob/31af32762da0400245ada0c342327da4b78eb182/pkg/cmd/cmd.go#L227-L239 it guarantees that there are no flags before the plugin name.

I'm not familiar enough with the plugin architecture, but this seems like a strong guarantee that __complete will always be args[0].

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok thats fair enough for me ! and thanks for this contribution ! I look forward to see more contributions from you

@medyagh
Copy link
Member

medyagh commented Feb 14, 2023

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Feb 14, 2023
@minikube-pr-bot
Copy link

kvm2 driver with docker runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 54.1s    | 53.3s               |
| enable ingress | 27.4s    | 27.2s               |
+----------------+----------+---------------------+

Times for minikube start: 53.3s 56.0s 54.6s 56.4s 50.2s
Times for minikube (PR 15850) start: 57.8s 54.6s 53.9s 49.5s 50.7s

Times for minikube ingress: 27.7s 25.7s 28.2s 27.7s 27.7s
Times for minikube (PR 15850) ingress: 27.7s 28.2s 24.2s 27.7s 28.2s

docker driver with docker runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 27.0s    | 27.0s               |
| enable ingress | 39.3s    | 21.0s               |
+----------------+----------+---------------------+

Times for minikube ingress: 50.1s 21.1s 21.6s 21.6s 82.1s
Times for minikube (PR 15850) ingress: 21.1s 21.6s 20.1s 22.1s 20.1s

Times for minikube start: 26.5s 26.6s 28.2s 26.9s 26.9s
Times for minikube (PR 15850) start: 26.7s 26.6s 26.7s 27.4s 27.6s

docker driver with containerd runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 21.9s    | 22.1s               |
| enable ingress | 29.2s    | 32.8s               |
+----------------+----------+---------------------+

Times for minikube start: 21.6s 22.2s 21.6s 21.5s 22.7s
Times for minikube (PR 15850) start: 22.1s 22.0s 22.1s 22.9s 21.5s

Times for minikube (PR 15850) ingress: 31.6s 33.1s 34.1s 32.6s 32.6s
Times for minikube ingress: 27.6s 32.6s 32.6s 21.6s 31.6s

@ben-krieger

This comment was marked as outdated.

@medyagh
Copy link
Member

medyagh commented Feb 14, 2023

/retest-this-please

@ben-krieger

This comment was marked as outdated.

@minikube-pr-bot
Copy link

kvm2 driver with docker runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 53.8s    | 53.4s               |
| enable ingress | 26.7s    | 26.3s               |
+----------------+----------+---------------------+

Times for minikube (PR 15850) start: 51.5s 52.8s 56.5s 50.7s 55.5s
Times for minikube start: 51.6s 53.7s 54.4s 54.5s 54.8s

Times for minikube (PR 15850) ingress: 24.7s 28.2s 28.8s 25.3s 24.7s
Times for minikube ingress: 27.7s 28.2s 24.7s 24.7s 28.2s

docker driver with docker runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 26.1s    | 26.9s               |
| enable ingress | 33.6s    | 22.0s               |
+----------------+----------+---------------------+

Times for minikube start: 25.8s 25.4s 27.5s 25.7s 26.4s
Times for minikube (PR 15850) start: 27.3s 27.6s 26.1s 27.1s 26.6s

Times for minikube ingress: 81.6s 22.1s 21.1s 21.1s 22.1s
Times for minikube (PR 15850) ingress: 23.1s 21.1s 21.1s 22.1s 22.6s

docker driver with containerd runtime

+-------------------+----------+---------------------+
|      COMMAND      | MINIKUBE | MINIKUBE (PR 15850) |
+-------------------+----------+---------------------+
| minikube start    | 22.0s    | 22.3s               |
| ⚠️  enable ingress | 29.6s    | 46.2s ⚠️             |
+-------------------+----------+---------------------+

Times for minikube start: 22.1s 22.0s 22.6s 21.6s 21.7s
Times for minikube (PR 15850) start: 23.2s 21.3s 22.1s 22.8s 22.0s

Times for minikube ingress: 31.6s 20.6s 32.6s 32.6s 30.6s
Times for minikube (PR 15850) ingress: 31.6s 19.6s 79.6s 20.6s 79.6s

@ben-krieger ben-krieger force-pushed the fix-minikube-kubectl-bash-completion branch from f580d35 to 6be3ba1 Compare February 14, 2023 19:17
@minikube-pr-bot
Copy link

These are the flake rates of all failed tests.

Environment Failed Tests Flake Rate (%)
KVM_Linux TestCertExpiration (gopogh) 0.00 (chart)
Docker_Windows TestStartStop/group/no-preload/serial/Pause (gopogh) 10.00 (chart)
Hyper-V_Windows TestPause/serial/SecondStartNoReconfiguration (gopogh) 81.94 (chart)
Hyper-V_Windows TestNoKubernetes/serial/StartWithK8s (gopogh) 90.41 (chart)
Hyper-V_Windows TestRunningBinaryUpgrade (gopogh) 93.15 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressDNSAddonActivation (gopogh) 98.74 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressAddonActivation (gopogh) 100.00 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressAddons (gopogh) 100.00 (chart)
Docker_macOS TestIngressAddonLegacy/StartLegacyK8sCluster (gopogh) 100.00 (chart)
Docker_macOS TestKubernetesUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestMissingContainerUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestRunningBinaryUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/DeployApp (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/EnableAddonWhileActive (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/FirstStart (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/SecondStart (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop (gopogh) 100.00 (chart)
Docker_macOS TestStoppedBinaryUpgrade/Upgrade (gopogh) 100.00 (chart)
Docker_Windows TestFunctional/parallel/ServiceCmd (gopogh) 100.00 (chart)
Hyper-V_Windows TestMultiNode/serial/PingHostFrom2Pods (gopogh) 100.00 (chart)
Hyper-V_Windows TestMultiNode/serial/RestartKeepsNodes (gopogh) 100.00 (chart)
Hyper-V_Windows TestStoppedBinaryUpgrade/Upgrade (gopogh) 100.00 (chart)
KVM_Linux_containerd TestPreload (gopogh) 100.00 (chart)

To see the flake rates of all tests by environment, click here.

@minikube-pr-bot
Copy link

These are the flake rates of all failed tests.

Environment Failed Tests Flake Rate (%)
Docker_Windows TestRunningBinaryUpgrade (gopogh) 0.00 (chart)
KVM_Linux TestFunctional/parallel/MountCmd/specific-port (gopogh) 1.18 (chart)
Hyperkit_macOS TestStartStop/group/default-k8s-diff-port/serial/UserAppExistsAfterStop (gopogh) 1.32 (chart)
Hyper-V_Windows TestAddons/parallel/CloudSpanner (gopogh) 9.59 (chart)
Hyperkit_macOS TestFunctional/parallel/ConfigCmd (gopogh) 19.74 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressDNSAddonActivation (gopogh) 98.76 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressAddonActivation (gopogh) 100.00 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressAddons (gopogh) 100.00 (chart)
Docker_macOS TestIngressAddonLegacy/StartLegacyK8sCluster (gopogh) 100.00 (chart)
Docker_macOS TestKubernetesUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestMissingContainerUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestRunningBinaryUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/DeployApp (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/EnableAddonWhileActive (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/FirstStart (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/SecondStart (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop (gopogh) 100.00 (chart)
Docker_macOS TestStoppedBinaryUpgrade/Upgrade (gopogh) 100.00 (chart)
Docker_Windows TestFunctional/parallel/ServiceCmd (gopogh) 100.00 (chart)
Hyper-V_Windows TestMultiNode/serial/PingHostFrom2Pods (gopogh) 100.00 (chart)
Hyper-V_Windows TestMultiNode/serial/RestartKeepsNodes (gopogh) 100.00 (chart)
Hyper-V_Windows TestNoKubernetes/serial/StartWithStopK8s (gopogh) 100.00 (chart)
Hyper-V_Windows TestStoppedBinaryUpgrade/Upgrade (gopogh) 100.00 (chart)
KVM_Linux_containerd TestPreload (gopogh) 100.00 (chart)
none_Linux TestAddons/Setup (gopogh) 100.00 (chart)
none_Linux TestCertExpiration (gopogh) 100.00 (chart)
none_Linux TestChangeNoneUser (gopogh) 100.00 (chart)
none_Linux TestFunctional/parallel/DashboardCmd (gopogh) 100.00 (chart)
none_Linux TestFunctional/parallel/MySQL (gopogh) 100.00 (chart)
More tests... Continued...

Too many tests failed - See test logs for more details.

To see the flake rates of all tests by environment, click here.

@minikube-pr-bot
Copy link

kvm2 driver with docker runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 55.4s    | 55.2s               |
| enable ingress | 26.7s    | 27.2s               |
+----------------+----------+---------------------+

Times for minikube ingress: 27.8s 25.3s 25.7s 25.2s 29.2s
Times for minikube (PR 15850) ingress: 29.8s 28.7s 25.3s 27.8s 24.3s

Times for minikube start: 58.3s 53.2s 52.8s 59.3s 53.5s
Times for minikube (PR 15850) start: 58.3s 54.1s 56.7s 53.7s 53.3s

docker driver with docker runtime

+-------------------+----------+---------------------+
|      COMMAND      | MINIKUBE | MINIKUBE (PR 15850) |
+-------------------+----------+---------------------+
| minikube start    | 27.6s    | 27.5s               |
| ⚠️  enable ingress | 21.7s    | 33.3s ⚠️             |
+-------------------+----------+---------------------+

Times for minikube ingress: 22.1s 21.1s 22.1s 22.1s 21.1s
Times for minikube (PR 15850) ingress: 82.1s 22.1s 22.1s 21.1s 19.1s

Times for minikube start: 26.8s 29.1s 26.3s 27.6s 27.9s
Times for minikube (PR 15850) start: 27.3s 26.9s 28.1s 27.1s 28.0s

docker driver with containerd runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 22.7s    | 22.7s               |
| enable ingress | 37.0s    | 32.4s               |
+----------------+----------+---------------------+

Times for minikube (PR 15850) start: 22.6s 22.4s 23.4s 23.0s 22.3s
Times for minikube start: 22.8s 23.1s 22.7s 22.4s 22.2s

Times for minikube ingress: 32.6s 32.6s 79.6s 20.6s 19.6s
Times for minikube (PR 15850) ingress: 31.6s 31.6s 32.6s 33.6s 32.6s

@minikube-pr-bot
Copy link

These are the flake rates of all failed tests.

Environment Failed Tests Flake Rate (%)
Docker_macOS TestAddons/parallel/CSI (gopogh) 0.00 (chart)
Docker_Windows TestRunningBinaryUpgrade (gopogh) 0.00 (chart)
Docker_macOS TestImageBuild/serial/BuildWithBuildArg (gopogh) 0.62 (chart)
Docker_macOS TestFunctional/parallel/DashboardCmd (gopogh) 1.85 (chart)
Docker_macOS TestFunctional/parallel/PersistentVolumeClaim (gopogh) 1.85 (chart)
Docker_macOS TestFunctional/parallel/TunnelCmd/serial/AccessDirect (gopogh) 1.85 (chart)
Docker_macOS TestFunctional/parallel/TunnelCmd/serial/WaitService/Setup (gopogh) 1.85 (chart)
KVM_Linux TestPause/serial/SecondStartNoReconfiguration (gopogh) 10.59 (chart)
Hyper-V_Windows TestPause/serial/SecondStartNoReconfiguration (gopogh) 81.94 (chart)
Hyper-V_Windows TestNoKubernetes/serial/StartWithK8s (gopogh) 90.41 (chart)
Hyper-V_Windows TestRunningBinaryUpgrade (gopogh) 93.15 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressDNSAddonActivation (gopogh) 98.77 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressAddonActivation (gopogh) 100.00 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressAddons (gopogh) 100.00 (chart)
Docker_macOS TestIngressAddonLegacy/StartLegacyK8sCluster (gopogh) 100.00 (chart)
Docker_macOS TestKubernetesUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestMissingContainerUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestRunningBinaryUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/DeployApp (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/EnableAddonWhileActive (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/FirstStart (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/SecondStart (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop (gopogh) 100.00 (chart)
Docker_macOS TestStoppedBinaryUpgrade/Upgrade (gopogh) 100.00 (chart)
Docker_Windows TestFunctional/parallel/ServiceCmd (gopogh) 100.00 (chart)
Hyper-V_Windows TestMultiNode/serial/PingHostFrom2Pods (gopogh) 100.00 (chart)
Hyper-V_Windows TestMultiNode/serial/RestartKeepsNodes (gopogh) 100.00 (chart)
Hyper-V_Windows TestStoppedBinaryUpgrade/Upgrade (gopogh) 100.00 (chart)
KVM_Linux_containerd TestPreload (gopogh) 100.00 (chart)

To see the flake rates of all tests by environment, click here.

@ben-krieger ben-krieger requested review from medyagh and removed request for spowelljr February 15, 2023 15:27
…--cluster` flag for the `kubectl __complete` subcommand

Signed-off-by: Ben Krieger <ben.krieger@intel.com>
@ben-krieger ben-krieger force-pushed the fix-minikube-kubectl-bash-completion branch from 6be3ba1 to 313cabe Compare February 15, 2023 15:37
@minikube-pr-bot
Copy link

kvm2 driver with docker runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 53.9s    | 52.9s               |
| enable ingress | 25.2s    | 25.9s               |
+----------------+----------+---------------------+

Times for minikube start: 54.1s 50.5s 57.0s 52.8s 55.3s
Times for minikube (PR 15850) start: 52.2s 52.2s 53.1s 53.8s 53.1s

Times for minikube ingress: 25.7s 25.7s 25.2s 25.7s 23.7s
Times for minikube (PR 15850) ingress: 26.1s 27.7s 27.3s 24.2s 24.2s

docker driver with docker runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 27.1s    | 26.7s               |
| enable ingress | 21.6s    | 21.4s               |
+----------------+----------+---------------------+

Times for minikube ingress: 21.6s 22.1s 21.6s 21.1s 21.6s
Times for minikube (PR 15850) ingress: 21.1s 21.1s 21.1s 22.6s 21.1s

Times for minikube start: 26.7s 26.8s 27.3s 27.7s 27.1s
Times for minikube (PR 15850) start: 27.6s 25.4s 25.8s 28.0s 27.0s

docker driver with containerd runtime

+----------------+----------+---------------------+
|    COMMAND     | MINIKUBE | MINIKUBE (PR 15850) |
+----------------+----------+---------------------+
| minikube start | 22.6s    | 22.2s               |
| enable ingress | 48.4s    | 42.0s               |
+----------------+----------+---------------------+

Times for minikube start: 22.7s 23.1s 22.2s 22.2s 22.8s
Times for minikube (PR 15850) start: 22.3s 22.0s 22.2s 22.0s 22.3s

Times for minikube ingress: 31.6s 19.6s 79.6s 79.6s 31.6s
Times for minikube (PR 15850) ingress: 80.6s 31.6s 32.6s 32.6s 32.6s

@medyagh medyagh merged commit 6815f9b into kubernetes:master Feb 15, 2023
@minikube-pr-bot
Copy link

These are the flake rates of all failed tests.

Environment Failed Tests Flake Rate (%)
Docker_Windows TestRunningBinaryUpgrade (gopogh) 0.00 (chart)
KVM_Linux TestMultiNode/serial/AddNode (gopogh) 0.00 (chart)
KVM_Linux TestMultiNode/serial/CopyFile (gopogh) 0.00 (chart)
KVM_Linux TestMultiNode/serial/StopNode (gopogh) 0.00 (chart)
KVM_Linux TestMultiNode/serial/StartAfterStop (gopogh) 7.23 (chart)
Hyperkit_macOS TestFunctional/parallel/ConfigCmd (gopogh) 23.65 (chart)
Hyper-V_Windows TestPause/serial/SecondStartNoReconfiguration (gopogh) 86.11 (chart)
Hyper-V_Windows TestNoKubernetes/serial/StartWithK8s (gopogh) 91.67 (chart)
Hyper-V_Windows TestRunningBinaryUpgrade (gopogh) 95.83 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressDNSAddonActivation (gopogh) 98.74 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressAddonActivation (gopogh) 100.00 (chart)
Docker_macOS TestIngressAddonLegacy/serial/ValidateIngressAddons (gopogh) 100.00 (chart)
Docker_macOS TestIngressAddonLegacy/StartLegacyK8sCluster (gopogh) 100.00 (chart)
Docker_macOS TestKubernetesUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestMissingContainerUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestRunningBinaryUpgrade (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/AddonExistsAfterStop (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/DeployApp (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/EnableAddonWhileActive (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/FirstStart (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/SecondStart (gopogh) 100.00 (chart)
Docker_macOS TestStartStop/group/old-k8s-version/serial/UserAppExistsAfterStop (gopogh) 100.00 (chart)
Docker_macOS TestStoppedBinaryUpgrade/Upgrade (gopogh) 100.00 (chart)
Docker_Windows TestFunctional/parallel/ServiceCmd (gopogh) 100.00 (chart)
Hyper-V_Windows TestMultiNode/serial/PingHostFrom2Pods (gopogh) 100.00 (chart)
Hyper-V_Windows TestMultiNode/serial/RestartKeepsNodes (gopogh) 100.00 (chart)
Hyper-V_Windows TestStoppedBinaryUpgrade/Upgrade (gopogh) 100.00 (chart)
KVM_Linux_containerd TestPreload (gopogh) 100.00 (chart)

To see the flake rates of all tests by environment, click here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/XS Denotes a PR that changes 0-9 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Minikube kubectl autocompletion not working
5 participants