Hi I am trying to deploy dagster or kubernetes. Wh...
# announcements
k
Hi I am trying to deploy dagster or kubernetes. When I launch execution I got this error. What I am missing?
m
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
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