https://dagster.io/ logo
Title
m

Maksym Domariev

10/21/2022, 5:13 AM
Hi, I'm checking https://docs.dagster.io/concepts/repositories-workspaces/workspaces#running-your-own-grpc-server docs, I have a dev process to run configuration using workspace.yaml with several repo's described like this :
```load_from:
- python_package:
package_name: common
- python_package:
package_name: keyword_extraction
- python_package:
package_name: nlp_v3```
How can I hint GRPC to check this file? I didn't find that in the options
❤️ 1
What I want to achieve is user deployment, with workspace running, instead of one repo, with configuration from workspace yaml
c

chris

10/21/2022, 6:59 PM
You can't point
dagster api grpc
at a workspace, you point it directly at a python module/file
m

Maksym Domariev

10/24/2022, 4:14 PM
thanks, that's kind of ruins the idea of that YAML file. Mono repo scenario gets impossible
c

chris

10/24/2022, 11:55 PM
In what way do you mean? The idea would be individual grpc servers pointing at each repo, and then your workspace.yaml instead points at the grpc server
m

Maksym Domariev

10/25/2022, 3:45 AM
i'm doing kube deployment, that would mean that I need to push every repo into separate docker file/kube deployment
❤️ 1