Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Adds additional customization of Argo Workflows UI #218

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions components/argo/include-columns
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- name: Workflow Completed
type: label
key: workflows.argoproj.io/completed
21 changes: 21 additions & 0 deletions components/argo/include-links
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
- name: Example Workflow Link
scope: workflow
url: http://logging-facility?namespace=${metadata.namespace}&workflowName=${metadata.name}&startedAt=${status.startedAt}&finishedAt=${status.finishedAt}
- name: Example Pod Link
scope: pod
url: http://logging-facility?namespace=${metadata.namespace}&podName=${metadata.name}&startedAt=${status.startedAt}&finishedAt=${status.finishedAt}
- name: Pod Logs
scope: pod-logs
url: http://logging-facility?namespace=${metadata.namespace}&podName=${metadata.name}&startedAt=${status.startedAt}&finishedAt=${status.finishedAt}
- name: Event Source Logs
scope: event-source-logs
url: http://logging-facility?namespace=${metadata.namespace}&podName=${metadata.name}&startedAt=${status.startedAt}&finishedAt=${status.finishedAt}
- name: Sensor Logs
scope: sensor-logs
url: http://logging-facility?namespace=${metadata.namespace}&podName=${metadata.name}&startedAt=${status.startedAt}&finishedAt=${status.finishedAt}
- name: Get help
scope: chat
url: http://my-chat
- name: Failed Workflows
scope: workflow-list
url: https://workflows.uc.ohthree.com/workflows?namespace=argo-events&phase=Failed&phase=Error&limit=50
5 changes: 5 additions & 0 deletions components/argo/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,8 @@ configMapGenerator:
files:
- sso
- workflowDefaults=workflow-defaults
- name: workflow-controller-configmap
behavior: replace
files:
- links=include-links
- columns=include-columns
Loading