-
Notifications
You must be signed in to change notification settings - Fork 458
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
split netpol cases #2322
split netpol cases #2322
Conversation
k8s-netpol-e2e-legacy: | ||
name: Kubernetes Network Policy E2E |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
k8s-netpol-e2e-legacy: | |
name: Kubernetes Network Policy E2E | |
k8s-netpol-legacy-e2e: | |
name: Kubernetes Network Policy Legacy E2E |
Makefile.e2e
Outdated
K8S_NETPOL_E2E_SKIP_LEGACY = "sig-network.*NetworkPolicyLegacy" | ||
K8S_NETPOL_E2E_SKIP_NETPOL = "sig-network.*Netpol" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
K8S_NETPOL_E2E_SKIP_LEGACY = "sig-network.*NetworkPolicyLegacy" | |
K8S_NETPOL_E2E_SKIP_NETPOL = "sig-network.*Netpol" | |
K8S_NETPOL_E2E_SKIP = "sig-network.*NetworkPolicyLegacy" | |
K8S_NETPOL_LEGACY_E2E_FOCUS = "sig-network.*NetworkPolicyLegacy" |
Makefile.e2e
Outdated
.PHONY: k8s-netpol-e2e-legacy | ||
k8s-netpol-e2e-legacy: | ||
go test ./test/e2e/k8s-network -c -o test/e2e/k8s-network/e2e.test | ||
./test/e2e/k8s-network/e2e.test --ginkgo.timeout=2h \ | ||
$(call ginkgo_option,focus,$(K8S_NETPOL_E2E_FOCUS)) \ | ||
$(call ginkgo_option,skip,$(K8S_NETPOL_E2E_SKIP_NETPOL)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.PHONY: k8s-netpol-e2e-legacy | |
k8s-netpol-e2e-legacy: | |
go test ./test/e2e/k8s-network -c -o test/e2e/k8s-network/e2e.test | |
./test/e2e/k8s-network/e2e.test --ginkgo.timeout=2h \ | |
$(call ginkgo_option,focus,$(K8S_NETPOL_E2E_FOCUS)) \ | |
$(call ginkgo_option,skip,$(K8S_NETPOL_E2E_SKIP_NETPOL)) | |
.PHONY: k8s-netpol-legacy-e2e | |
k8s-netpol-legacy-e2e: | |
go test ./test/e2e/k8s-network -c -o test/e2e/k8s-network/e2e.test | |
./test/e2e/k8s-network/e2e.test --ginkgo.timeout=2h \ | |
$(call ginkgo_option,focus,$(K8S_NETPOL_LEGACY_E2E_FOCUS)) |
Makefile.e2e
Outdated
.PHONY: k8s-netpol-e2e | ||
k8s-netpol-e2e: | ||
go test ./test/e2e/k8s-network -c -o test/e2e/k8s-network/e2e.test | ||
./test/e2e/k8s-network/e2e.test --ginkgo.timeout=2h \ | ||
$(call ginkgo_option,focus,$(K8S_NETPOL_E2E_FOCUS)) \ | ||
$(call ginkgo_option,skip,$(K8S_NETPOL_E2E_SKIP)) | ||
$(call ginkgo_option,skip,$(K8S_NETPOL_E2E_SKIP_LEGACY)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$(call ginkgo_option,skip,$(K8S_NETPOL_E2E_SKIP_LEGACY)) | |
$(call ginkgo_option,skip,$(K8S_NETPOL_E2E_SKIP)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed all
@@ -362,6 +362,95 @@ jobs: | |||
working-directory: ${{ env.E2E_DIR }} | |||
run: make k8s-netpol-e2e | |||
|
|||
k8s-netpol-legacy-e2e: | |||
name: Kubernetes Network Policy E2E |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
name: Kubernetes Network Policy E2E | |
name: Kubernetes Network Policy Legacy E2E |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
finished
@@ -1064,6 +1153,7 @@ jobs: | |||
- build-centos-compile | |||
- k8s-conformance-e2e | |||
- k8s-netpol-e2e | |||
- k8s-netpol-e2e-legacy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- k8s-netpol-e2e-legacy | |
- k8s-netpol-legacy-e2e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry for this small issue
@@ -1064,6 +1153,7 @@ jobs: | |||
- build-centos-compile | |||
- k8s-conformance-e2e | |||
- k8s-netpol-e2e | |||
- k8s-netpol-legacy-e2e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- k8s-netpol-legacy-e2e | |
# - k8s-netpol-legacy-e2e |
Some e2e cases failed, we should comment this until the failure is resolved.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
What type of this PR
Examples of user facing changes:
Which issue(s) this PR fixes:
Fixes #2285