https://dagster.io/ logo
Title
m

Mykola Palamarchuk

12/15/2021, 7:10 PM
Hi! I'm trying to set-up k8s cluster with helm. I want to build a separate user code image as described here: https://docs.dagster.io/deployment/guides/kubernetes/deploying-with-helm#build-docker-image-for-user-code But I don't get the python versioning schema here. As I understand dagster-celery-k8s image uses python 3.7.8 which is a bit outdated. Can I use python 3.9 in my user image?
d

daniel

12/15/2021, 7:15 PM
Hi Nick - you can use python 3.9, yeah. Your user code doesn't need to use dagster-celery-k8s as a base image, it just needs to have the dagster library installed so that it can load your code
m

Mykola Palamarchuk

12/15/2021, 7:19 PM
I'm just curious about compatibility. Thanks!
d

daniel

12/15/2021, 7:41 PM
oh, I see - yeah, the different parts of the system communicate over gRPC or the structured event log, so there shouldn't be any compatibility issues, you can have multiple user code images running different versions of python even