From eba3fdd0610f14d8bcc4acb80c8ee4bba3ae554f Mon Sep 17 00:00:00 2001 From: Jitendrakumar Kushavah <78074038+jitendracandela@users.noreply.github.com> Date: Fri, 4 Apr 2025 11:11:23 +0530 Subject: [PATCH] Shortened namespace name (#1043) Signed-off-by: jitendracandela --- .github/workflows/regression.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index aa6b9a9fc..c5f5b5878 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -2255,7 +2255,7 @@ jobs: uses: ./.github/actions/run-tests if: "!cancelled() && contains(fromJSON(needs.vars.outputs.marker_expressions), 'rate_limiting_with_radius_tests')" with: - namespace: ${{ steps.namespace.outputs.name }}-rate-limiting-radius + namespace: ${{ steps.namespace.outputs.name }}-rate-limit-rad testbed: basic-2a marker_expression: "ow_regression_lf and rate_limiting_with_radius_tests" configuration_file: "./lab_info.json" @@ -2269,13 +2269,13 @@ jobs: if: always() continue-on-error: true run: | - podname=$(kubectl get pods -n ${{ steps.namespace.outputs.name }}-rate-limiting-radius --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") - kubectl logs --timestamps -n ${{ steps.namespace.outputs.name }}-rate-limiting-radius $podname || true + podname=$(kubectl get pods -n ${{ steps.namespace.outputs.name }}-rate-limit-rad --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") + kubectl logs --timestamps -n ${{ steps.namespace.outputs.name }}-rate-limit-rad $podname || true - name: delete namespace if: always() continue-on-error: true - run: kubectl delete ns --ignore-not-found=true --wait ${{ steps.namespace.outputs.name }}-rate-limiting-radius + run: kubectl delete ns --ignore-not-found=true --wait ${{ steps.namespace.outputs.name }}-rate-limit-rad - name: run dynamic_vlan tests uses: ./.github/actions/run-tests