Viewing Notebook Workflow Details
- Updated2025-11-26
- 1 minute(s) read
Connect to the Argo server to view notebook workflow details.
-
In the Command Prompt, run the following command to set port forwarding to the
service.
kubectl port-forward services/helm-release-name-argo-workflows-server 2746:2746 -n namespace
Where
- helm-release-name is the release where the SystemLink chart is installed.
- namespace is the namespace created for the SystemLink chart.
You can now access the server by connecting to localhost:2746 -
Run the following command to get the name of the service account token.
SECRET=$(kubectl get sa helm-release-name-argo-workflows-server -o=jsonpath='{.secrets[0].name}' -n namespace)
-
Run the following command to get the token value.
echo $ARGO_TOKEN="Bearer $(kubectl get secret $SECRET -o=jsonpath='{.data.token}' -n namespace | base64 --decode)"
- Navigate to the Argo server and enter the token value under Client Authentication.