From eeda11de98febb3e7953ec00113a94b7cb61d895 Mon Sep 17 00:00:00 2001 From: Brad Davidson Date: Thu, 31 Jul 2025 23:34:51 +0000 Subject: [PATCH] Fix completion command in e2e Current syntax is incorrect, and while it doesn't break the test it is throwing an error in the logs Signed-off-by: Brad Davidson --- tests/e2e/secretsencryption/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/secretsencryption/Vagrantfile b/tests/e2e/secretsencryption/Vagrantfile index f73a4ad60d..7cbb6a73a5 100644 --- a/tests/e2e/secretsencryption/Vagrantfile +++ b/tests/e2e/secretsencryption/Vagrantfile @@ -44,7 +44,7 @@ def provision(vm, role, role_num, node_num) if vm.box.to_s.include?("microos") vm.provision 'k3s-reload', type: 'reload', run: 'once' end - vm.provision 'k3s-autocomplete', type: 'shell', inline: "k3s completion -i bash" + vm.provision 'k3s-autocomplete', type: 'shell', inline: "k3s completion bash -i" end Vagrant.configure("2") do |config|