Dylan Bienstock
06/02/2021, 5:03 PMclient = DagsterGraphQLClient("localhost", port_number=3000)
and it is working when I run dagit locally. However, when i deploy it to my dagster k8 instance it is not able to connect. Is there a different port I should be using? Or do I need to open something up to allow it to communicate?rex
06/02/2021, 5:16 PMvalues.yaml
. Currently, the default is 80 https://sourcegraph.com/github.com/dagster-io/dagster/-/blob/helm/dagster/templates/helpers/_helpers.tpl#L34:30Dylan Bienstock
06/02/2021, 5:25 PMclient = DagsterGraphQLClient("localhost", port_number=80)
I still get the following connection refused error. I am also following the deployment architecture example where my company repo and dagit server are on separate pods so this instantiation exist on a seperate pod than what dagit is running onrex
06/02/2021, 5:32 PMkubectl --namespace <NAMESPACE> port-forward <DAGIT_POD_NAME> 8080:80
client = DagsterGraphQLClient("localhost", port_number=8080)
Kirk Stennett
06/02/2021, 5:46 PMrex
06/02/2021, 6:01 PMresource
for the client, using that url as the hostnameKirk Stennett
06/02/2021, 6:10 PMrex
06/02/2021, 6:20 PMKirk Stennett
06/08/2021, 9:01 PMdagster-dagit.<namespace>.svc.cluster.local:80