Skip to content

Latest commit

 

History

History
38 lines (23 loc) · 613 Bytes

README.md

File metadata and controls

38 lines (23 loc) · 613 Bytes

Containerizer

Containerizer is a tool to run python functions in kubernetes containers

Installation

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

Usage

from containerizer.containerizer import Containerize


def printtext(args):
    pass

#Prints "hello world"
x = Containerize(printtext, args=["Hola mundo"])
x.start()
print(x.join())

License

MIT