Skip to content

Commit

Permalink
scripts cluster: increase kops cluster size
Browse files Browse the repository at this point in the history
  • Loading branch information
dshehbaj committed Dec 6, 2024
1 parent bdcf679 commit 4683668
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 18 deletions.
3 changes: 3 additions & 0 deletions scripts/lib/cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ function up-kops-cluster {
--networking amazonvpc \
--node-count 2 \
--node-size c5.xlarge \
--control-plane-count 3 \
--control-plane-size c5.xlarge \
--control-plane-zones ${AWS_DEFAULT_REGION}a,${AWS_DEFAULT_REGION}b \
--ssh-public-key=~/.ssh/devopsinuse.pub \
--kubernetes-version ${K8S_VERSION} \
--image ${HOST_IMAGE_SSM_PARAMETER} \
Expand Down
18 changes: 0 additions & 18 deletions scripts/lib/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,6 @@ function run_kops_conformance() {
echo "CNI DaemonSet status:"
kubectl describe ds aws-node -n=kube-system

# List available networking conformance tests
echo "=== Available Networking Conformance Tests ===" | tee /tmp/network-tests.txt
/tmp/e2e.test --ginkgo.dryRun --ginkgo.v \
--ginkgo.focus="\[sig-network\].*Conformance" \
--kubeconfig=$KUBECONFIG | grep -E "^•|^-" | tee -a /tmp/network-tests.txt || true

# Also list networking tests that are not marked as conformance
echo -e "\n=== All Available Networking Tests (including non-conformance) ===" | tee -a /tmp/network-tests.txt
/tmp/e2e.test --ginkgo.dryRun --ginkgo.v \
--ginkgo.focus="\[sig-network\]" \
--kubeconfig=$KUBECONFIG | grep -E "^•|^-" | tee -a /tmp/network-tests.txt || true

echo "Test list has been saved to /tmp/network-tests.txt"

# Run all network conformance tests
echo "=== Running Network Conformance Tests ==="
echo "Running all [sig-network] conformance tests"

# Run the focused set of tests with detailed logging
TEST_START=$SECONDS
set -o pipefail # Ensure we catch test failures
Expand Down

0 comments on commit 4683668

Please sign in to comment.