From b7ec6bf79dbbf2a25b9c22b61726e1a77fa8e275 Mon Sep 17 00:00:00 2001 From: Timothy Appnel Date: Wed, 7 Oct 2020 15:58:03 -0400 Subject: [PATCH] Fixes #250 by defining the FQCN connection plugin name to force using the one included in this collection (#252) --- plugins/inventory/k8s.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/inventory/k8s.py b/plugins/inventory/k8s.py index 4c9bab82..50554575 100644 --- a/plugins/inventory/k8s.py +++ b/plugins/inventory/k8s.py @@ -143,7 +143,7 @@ class K8sInventoryException(Exception): class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable, K8sAnsibleMixin): NAME = 'community.kubernetes.k8s' - connection_plugin = 'kubectl' + connection_plugin = 'community.kubernetes.kubectl' transport = 'kubectl' def parse(self, inventory, loader, path, cache=True):