diff --git a/src/processor/__init__.py b/src/processor/__init__.py index 386f05d..aea754f 100644 --- a/src/processor/__init__.py +++ b/src/processor/__init__.py @@ -45,7 +45,7 @@ class ProcessorInterface: elif mode == "swarm": return Swarm() elif mode == "kubernetes": - return Swarm() + return Kubernetes() else: Functions.log("FACTORY", "error", "Expected mode to be 'static', 'docker', 'swarm' or 'kubernetes'. I got '%s'" % (mode)) return None