https://dagster.io/ logo
k

Kaspars

10/22/2020, 1:54 PM
Hi I am trying to deploy dagster or kubernetes. When I launch execution I got this error. What I am missing?
m

Michiel Ghyselinck

10/22/2020, 1:58 PM
You need to add something similar to this to your run config:
Copy code
execution:
  celery-k8s:
    config:
      job_namespace: dagster
      env_config_maps:
        - "dagster-pipeline-env"
      image_pull_policy: "Always"
Also make sure your pipelines have the right imports and modes. I've written a small piece on this that might help you: https://dev.to/michielhub/dagster-with-user-code-deployments-grpc-2c16
2
k

Kaspars

10/22/2020, 3:02 PM
Thanks! It was very helpful! I was missing run config 🤦‍♂️ And by the way, this tutorial You wrote is very good, we used it.
❤️ 1
2 Views