Hello Ashley,I went to V0.38.1 following https://kubevirt.io/user-guide/operations/updating_and_deletion/#updating-kubevirt and used https://kubevirt.io/user-guide/operations/updating_and_deletion/#deleting-kubevirt to delete.Even with everything seeming to be gone, when i reinstall I get timeout on kubectl -n kubevirt wait kv kubevirt --for condition=Available.Any suggestions would be greatly appreciated.
On Thursday, February 11, 2021 at 11:04:20 AM UTC-5 alanf...@gmail.com wrote:Hello Ashley,I went to V0.38.1 following https://kubevirt.io/user-guide/operations/updating_and_deletion/#updating-kubevirt and used https://kubevirt.io/user-guide/operations/updating_and_deletion/#deleting-kubevirt to delete.Even with everything seeming to be gone, when i reinstall I get timeout on kubectl -n kubevirt wait kv kubevirt --for condition=Available.Any suggestions would be greatly appreciated.I think this a bug in kubevirt. It appears the operator webhook leaked into the logic that uninstalls KubeVirt. We need to address this.I can see this in "pkg/virt-operator/resource/generate/install/strategy.go". i don't think we should be adding the operator webhook there to the list.strategy.validatingWebhookConfigurations = append(strategy.validatingWebhookConfigurations, components.NewOpertorValidatingWebhookConfiguration(operatorNamespace))strategy.validatingWebhookConfigurations = append(strategy.validatingWebhookConfigurations, components.NewVirtAPIValidatingWebhookConfiguration(config.GetNamespace()))strategy.mutatingWebhookConfigurations = append(strategy.mutatingWebhookConfigurations, components.NewVirtAPIMutatingWebhookConfiguration(config.GetNamespace()))