Containerizer is a tool to run python functions in kubernetes containers
Deploy the Kubernetes objects:
kubectl apply -f yamls/*
Use the package manager pip to install Containerizer.
pip install pip install git+https://github.com/HPC-ULL/KubePipe
from containerizer.containerizer import Containerize
def printtext(args):
pass
#Prints "hello world"
x = Containerize(printtext, args=["Hola mundo"])
x.start()
print(x.join())