Skip to content

Commit 599ef9f

Browse files
authored
docs(helm): fix the label component=dagster-webserver (#26721)
## Summary & Motivation The command to retrieve webserver pod doesn't return anything if the filter on label is incorrect https://docs.dagster.io/deployment/guides/kubernetes/deploying-with-helm#get-the-name-of-the-webserver-pod I think the value comes from here https://github.com/dagster-io/dagster/blob/master/helm/dagster/values.yaml#L41 There is a small typo Merry Christmas 🎅 🎁 🎄
1 parent 9c22ef4 commit 599ef9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/deployment/guides/kubernetes/deploying-with-helm.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ Running into issues deploying on Helm? Use these commands to help with debugging
505505

506506
```shell
507507
DAGSTER_WEBSERVER_POD_NAME=$(kubectl get pods --namespace default \
508-
-l "app.kubernetes.io/name=dagster,app.kubernetes.io/instance=dagster,component=webserver" \
508+
-l "app.kubernetes.io/name=dagster,app.kubernetes.io/instance=dagster,component=dagster-webserver" \
509509
-o jsonpath="{.items[0].metadata.name}")
510510
```
511511

0 commit comments

Comments
 (0)