Skip to content

Commit

Permalink
ci: cilium-nightly skip test check-log-errors (#2763)
Browse files Browse the repository at this point in the history
skip check-log-errors
  • Loading branch information
camrynl authored Jun 5, 2024
1 parent 49509a9 commit 3e10379
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,12 @@ steps:
- script: |
echo "Run Cilium Connectivity Tests"
cilium status
cilium connectivity test --connect-timeout 4s --request-timeout 30s --test '!pod-to-pod-encryption,!node-to-node-encryption'
if [ "$CILIUM_VERSION_TAG" = "cilium-nightly-pipeline" ]
then
cilium connectivity test --connect-timeout 4s --request-timeout 30s --test '!pod-to-pod-encryption,!node-to-node-encryption,!check-log-errors'
else
cilium connectivity test --connect-timeout 4s --request-timeout 30s --test '!pod-to-pod-encryption,!node-to-node-encryption'
fi
retryCountOnTaskFailure: 3
name: "ciliumConnectivityTests"
displayName: "Run Cilium Connectivity Tests"
Expand Down

0 comments on commit 3e10379

Please sign in to comment.