From b11d6caae39a4fd09499ff36016b96b1e2ba0ad7 Mon Sep 17 00:00:00 2001 From: Case Wylie Date: Thu, 10 Oct 2024 14:46:53 -0400 Subject: [PATCH] chore: display resource usage in soak (#1258) ## Description display resource usage in soak ## Related Issue Fixes #1257 Relates to # ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [x] Other (security config, docs update, etc) ## Checklist before merging - [x] Unit, [Journey](https://github.com/defenseunicorns/pepr/tree/main/journey), [E2E Tests](https://github.com/defenseunicorns/pepr-excellent-examples), [docs](https://github.com/defenseunicorns/pepr/tree/main/docs), [adr](https://github.com/defenseunicorns/pepr/tree/main/adr) added or updated as needed - [x] [Contributor Guide Steps](https://docs.pepr.dev/main/contribute/#submitting-a-pull-request) followed Signed-off-by: Case Wylie --- .github/workflows/soak.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/soak.yaml b/.github/workflows/soak.yaml index 34e7ddf37..78c6f2bb1 100644 --- a/.github/workflows/soak.yaml +++ b/.github/workflows/soak.yaml @@ -165,7 +165,8 @@ jobs: update_pod_map kubectl get pods -n pepr-demo - + kubectl top po -n pepr-system + # Verify that no pod's count exceeds 1 for pod in "${!pod_map[@]}"; do echo "$pod: ${pod_map[$pod]}"