From 88fa25fa6f2e91fd63751d16f0ed83d90e22445f Mon Sep 17 00:00:00 2001 From: Benjamin Pickard Date: Wed, 31 Jul 2024 16:37:12 -0400 Subject: [PATCH] Update devnotes Signed-off-by: Benjamin Pickard --- doc/developer_notes.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/developer_notes.md b/doc/developer_notes.md index 35ff1107b..cd2c73701 100644 --- a/doc/developer_notes.md +++ b/doc/developer_notes.md @@ -3,7 +3,9 @@ Run `go mod` with: ``` +go mod tidy go mod vendor +go mod verify ``` ## Running with CNI's `docker-run.sh` @@ -66,3 +68,14 @@ spec: EOF ``` +## Using the scale script `/scripts/scale-test.sh` + +1. This will not work unless you have a running cluster + A simple way to spin a cluster to use this with is by using + ``` + ./hack/e2e-setup-kind-cluster -n 3 + ``` +2. This script leverages the `whereaboutsScaleNAD` and `scaleTestDeployment` yamls in /yamls +3. To modify the number of pods spun by the script, change the replicas value in the `scaleTestDeployment` yaml + +