Skip to content

Commit

Permalink
test-l4lb: Use QUAY_ORGANIZATION_DEV as the Quay org name
Browse files Browse the repository at this point in the history
Use QUAY_ORGANIZATION_DEV environment variable as Quay organization name
to be consistent with other workflow files.

Signed-off-by: Michi Mutsuzaki <michi@isovalent.com>
  • Loading branch information
michi-covalent committed Apr 22, 2023
1 parent 750beac commit 4e12bc0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests-l4lb-v1.11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
- name: Run LoadBalancing test
run: |
cd ${{ github.workspace }}/test/l4lb && sudo ./test.sh ${{ github.repository_owner}} ${{ steps.vars.outputs.sha }} ${{ github.workspace }}/pull-request/install/kubernetes/cilium
cd ${{ github.workspace }}/test/l4lb && sudo ./test.sh ${{ env.QUAY_ORGANIZATION_DEV }} ${{ steps.vars.outputs.sha }} ${{ github.workspace }}/pull-request/install/kubernetes/cilium
- name: Fetch cilium-sysdump
if: ${{ !success() }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-l4lb-v1.12.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,11 @@ jobs:
- name: Run LoadBalancing test
run: |
cd ${{ github.workspace }}/test/l4lb && sudo ./test.sh ${{ github.repository_owner}} ${{ steps.vars.outputs.sha }} ${{ github.workspace }}/pull-request/install/kubernetes/cilium
cd ${{ github.workspace }}/test/l4lb && sudo ./test.sh ${{ env.QUAY_ORGANIZATION_DEV }} ${{ steps.vars.outputs.sha }} ${{ github.workspace }}/pull-request/install/kubernetes/cilium
- name: Run NAT46x64 test
run: |
cd ${{ github.workspace }}/test/nat46x64 && sudo ./test.sh ${{ github.repository_owner}} ${{ steps.vars.outputs.sha }} ${{ github.workspace }}/pull-request/install/kubernetes/cilium
cd ${{ github.workspace }}/test/nat46x64 && sudo ./test.sh ${{ env.QUAY_ORGANIZATION_DEV }} ${{ steps.vars.outputs.sha }} ${{ github.workspace }}/pull-request/install/kubernetes/cilium
- name: Fetch cilium-sysdump
if: ${{ !success() }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-l4lb-v1.13.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,11 @@ jobs:
- name: Run LoadBalancing test
run: |
cd ${{ github.workspace }}/test/l4lb && sudo ./test.sh ${{ github.repository_owner}} ${{ steps.vars.outputs.sha }}
cd ${{ github.workspace }}/test/l4lb && sudo ./test.sh ${{ env.QUAY_ORGANIZATION_DEV }} ${{ steps.vars.outputs.sha }}
- name: Run NAT46x64 test
run: |
cd ${{ github.workspace }}/test/nat46x64 && sudo ./test.sh ${{ github.repository_owner}} ${{ steps.vars.outputs.sha }}
cd ${{ github.workspace }}/test/nat46x64 && sudo ./test.sh ${{ env.QUAY_ORGANIZATION_DEV }} ${{ steps.vars.outputs.sha }}
- name: Fetch cilium-sysdump
if: ${{ !success() }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-l4lb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,11 @@ jobs:
- name: Run LoadBalancing test
run: |
cd ${{ github.workspace }}/test/l4lb && sudo ./test.sh ${{ github.repository_owner}} ${{ steps.vars.outputs.sha }}
cd ${{ github.workspace }}/test/l4lb && sudo ./test.sh ${{ env.QUAY_ORGANIZATION_DEV }} ${{ steps.vars.outputs.sha }}
- name: Run NAT46x64 test
run: |
cd ${{ github.workspace }}/test/nat46x64 && sudo ./test.sh ${{ github.repository_owner}} ${{ steps.vars.outputs.sha }}
cd ${{ github.workspace }}/test/nat46x64 && sudo ./test.sh ${{ env.QUAY_ORGANIZATION_DEV }} ${{ steps.vars.outputs.sha }}
- name: Fetch cilium-sysdump
if: ${{ !success() }}
Expand Down

0 comments on commit 4e12bc0

Please sign in to comment.