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

workflows: disable no-policies/pod-to-service in clustermesh #17894

Merged
merged 2 commits into from
Nov 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/conformance-multicluster-v1.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,11 @@ jobs:
--context ${{ steps.contexts.outputs.context1 }} \
--multi-cluster ${{ steps.contexts.outputs.context2 }} \
--test '!/pod-to-.*-nodeport' \
--flow-validation=disabled
--test '!no-policies/pod-to-service' \
--flow-validation=disabled
# TODO: Remove `no-policies/pod-to-service` test exception (unreliable
# on clustermesh) once https://github.com/cilium/cilium-cli/issues/600
# is fixed.

- name: Post-test information gathering
if: ${{ !success() }}
Expand Down
19 changes: 14 additions & 5 deletions .github/workflows/conformance-multicluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,11 @@ jobs:
--context ${{ steps.contexts.outputs.context1 }} \
--multi-cluster ${{ steps.contexts.outputs.context2 }} \
--test '!/pod-to-.*-nodeport' \
--flow-validation=disabled
--test '!no-policies/pod-to-service' \
--flow-validation=disabled
# TODO: Remove `no-policies/pod-to-service` test exception (unreliable
# on clustermesh) once https://github.com/cilium/cilium-cli/issues/600
# is fixed.

- name: Enable WireGuard
run: |
Expand All @@ -314,13 +318,18 @@ jobs:

- name: Run connectivity test with WireGuard
run: |
# TODO: Once WireGuard supports the L7 proxy, the L7 tests can be
# included here. See cilium/cilium#15462
cilium connectivity test \
--context ${{ steps.contexts.outputs.context1 }} \
--multi-cluster ${{ steps.contexts.outputs.context2 }} \
--test '!/pod-to-.*-nodeport,!client-egress-l7,!echo-ingress-l7,!to-fqdns,!dns-only' \
--flow-validation=disabled
--test '!/pod-to-.*-nodeport' \
--test '!client-egress-l7,!echo-ingress-l7,!to-fqdns,!dns-only' \
--test '!no-policies/pod-to-service' \
--flow-validation=disabled
# TODO: Once WireGuard supports the L7 proxy, the L7 tests can be
# included here. See cilium/cilium#15462
# TODO: Remove `no-policies/pod-to-service` test exception (unreliable
# on clustermesh) once https://github.com/cilium/cilium-cli/issues/600
# is fixed.

- name: Post-test information gathering
if: ${{ !success() }}
Expand Down