Connect to the Argo server to view notebook workflow details.

You must be an admin to complete the following steps.
  1. 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
  2. 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)
  3. 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)"
  4. Navigate to the Argo server and enter the token value under Client Authentication.