Hi again! Is there a storage/deployment pattern th...
# ask-community
g
Hi again! Is there a storage/deployment pattern that allows me to include custom modules for my flow at registration time, rather than rebuilding the docker image whenever I want to update them? I thought the Git storage might include the extra python files but it’s not liking it (maybe I’m doing it all wrong?)
(using k8s agent btw)
k
The only thing I can see here is if you can put a Git URL here in the EXTRA_PIP_PACKAGES
Yes Git storage is not intended for that. If your custom modules don’t really change, the advice is to add them in the image and then just pass that image to
KubernetesRun
g
got it, thank you!