Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,6 @@ steps:
- script: |
echo "validate pod IP assignment and check systemd-networkd restart"
kubectl get pod -owide -A
# Deleting echo-external-node deployment until cilium version matches TODO. https://github.com/cilium/cilium-cli/issues/67 is addressing the change.
# Saves 17 minutes
kubectl delete deploy -n $(ciliumNamespace) echo-external-node
cd test/integration/load
CNI_TYPE=cilium_dualstack go test -timeout 30m -tags load -run ^TestValidateState$
echo "delete cilium connectivity test resources and re-validate state"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,6 @@ steps:
kubectl get ciliumidentity | grep cilium-test
fi
make test-validate-state
echo "delete cilium connectivity test resources and re-validate state" # TODO Delete this and the next 4 lines if connectivity no longer has bug
kubectl delete ns $(ciliumNamespace)
kubectl get pod -owide -A
make test-validate-state
name: "validatePods"
displayName: "Validate Pods"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,20 +214,6 @@ steps:
name: "CiliumIdentities"
displayName: "Verify Cilium Identities Deletion"

- script: | # TODO REMOVE THIS STEP, make test-load covers this
set -e
echo "validate pod IP assignment before CNS restart"
kubectl get pod -owide -A
make test-validate-state
echo "restart CNS"
kubectl rollout restart ds azure-cns -n kube-system
kubectl rollout status ds azure-cns -n kube-system
kubectl get pod -owide -A
echo "validate pods after CNS restart"
make test-validate-state
name: "restartCNS"
displayName: "Restart CNS and validate pods"

- script: |
echo "Run wireserver and metadata connectivity Tests"
bash test/network/wireserver_metadata_test.sh
Expand Down
4 changes: 0 additions & 4 deletions .pipelines/templates/cilium-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,6 @@ steps:
echo "validate pod IP assignment and check systemd-networkd restart"
kubectl get pod -owide -A
make test-validate-state
echo "delete cilium connectivity test resources and re-validate state" # TODO Delete this and the next 4 lines if connectivity no longer has bug
kubectl delete ns $(ciliumNamespace)
kubectl get pod -owide -A
make test-validate-state
name: "validatePods"
displayName: "Validate Pods"

Expand Down
Loading