Hendy Irawan
06/04/2022, 9:33 PMdagsterApiGrpcArgs
in Kubernetes configuration is unable to load multiple repositories or from workspace.yaml
. How do I solve this?
I tried doing this:
dagsterApiGrpcArgs:
- "-p"
- "3030"
but no repository is loaded.
If I do this:
dagsterApiGrpcArgs: []
throws error due to extra args ().
If I do this:
- "-m"
- "team_checkpoint.repo"
- "-m"
- "leanpd_notion.repo"
only the last repo is loaded.
Additionally:
Try 'dagster api grpc -h' for help.
But if I run that, I get:
Error: Option '-h' requires an argument.
Dagster version: 0.14.19daniel
06/04/2022, 9:50 PMHendy Irawan
06/04/2022, 9:55 PMworkspace.yaml
is not used at all by grpc api
?daniel
06/05/2022, 12:22 AMgrpc_server
key in it: https://docs.dagster.io/concepts/repositories-workspaces/workspaces#running-your-own-grpc-serverHendy Irawan
06/05/2022, 6:38 AMfrom team_checkpoint.repo import *
from leanpd_notion.repo import *
Then putting this in the Helm config:
dagsterApiGrpcArgs:
- "-m"
- "workspace"
port: 3030
workspace.yaml
is “useless” now as I can use:
dagit -m workspace
which is similar to the arguments used during Kubernetes user code deployment.daniel
06/05/2022, 5:29 PM