Runs

You can view all recent runs belonging to your organization(s).

Recent Runs

You can view the recent runs belonging to your organization(s) by going to the Runs tab in Pipekitarrow-up-right.

From here you can see all past runs of the Pipe. The view allows you to understand what Run Conditions triggered the run, the cluster the run ran on, the status of the run, the current progress of the run (if still running), the time the run started, and the duration of the run.

More information about a Run

To access detailed information about a specific run, simply click on it. This action will direct you to the run graph, where you can view the graphical representation of the run, check the pod logs, and review the workflow logs.

Linking to Pipekit Pipe Runs from the Argo Workflows UI

You can add a link to the Argo Workflows UI that takes users from a Workflow in Argo Workflows directly to the corresponding Run in Pipekit.

Add the following to your Workflow Controller ConfigMap:

apiVersion: v1
kind: ConfigMap
metadata:
  name: workflow-controller-configmap
data:
  links: |
    # Adds a button to the workflow page that takes the user to the Pipe Run in Pipekit
    - name: View in Pipekit
      scope: workflow
      url: https://pipekit.io/pipes/${workflow.metadata.labels.workflows.pipekit.io/pipe_uuid}/runs/${workflow.metadata.labels.workflows.pipekit.io/run_uuid}
    # Adds a button to the sidebar that takes the user to the pod's details view in Pipekit
    - name: View in Pipekit
      scope: pod
      url: https://pipekit.io/pipes/${workflow.metadata.labels.workflows.pipekit.io/pipe_uuid}/runs/${workflow.metadata.labels.workflows.pipekit.io/run_uuid}/workflow?pod-name=${metadata.name}

Then restart your Workflow Controller and Argo Server instances.

Last updated