Skip to content

Commit 167f6e9

Browse files
docs(how-to-guides): update Kind validation guide with latest Locust image and streamline installation
Update Locust image version from 2.20.0 to 2.43.3, remove redundant Linux installation instructions for Kind, and simplify Helm install command formatting.
1 parent 8c0e60d commit 167f6e9

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

docs/how-to-guides/validate-with-kind.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@ Ensure you have installed:
4141
# macOS (using Homebrew)
4242
brew install kubectl helm kind
4343

44-
# Linux
45-
curl -Lo ./kind https://kind.sigs.k8s.io/dl/latest/kind-linux-amd64
46-
chmod +x ./kind
47-
sudo mv ./kind /usr/local/bin/kind
4844

4945
# Verify installations
5046
kubectl version --client
@@ -63,8 +59,7 @@ kind create cluster --name locust-test
6359
# 2. Install operator
6460
helm repo add locust-k8s-operator https://abdelrhmanhamouda.github.io/locust-k8s-operator/
6561
helm repo update
66-
helm install locust-operator locust-k8s-operator/locust-k8s-operator \
67-
--namespace locust-system --create-namespace
62+
helm install locust-operator locust-k8s-operator/locust-k8s-operator --namespace locust-system --create-namespace
6863

6964
# 3. Create test
7065
kubectl create configmap demo-test --from-literal=demo_test.py='
@@ -82,7 +77,7 @@ kind: LocustTest
8277
metadata:
8378
name: demo
8479
spec:
85-
image: locustio/locust:2.20.0
80+
image: locustio/locust:2.43.3
8681
testFiles:
8782
configMapRef: demo-test
8883
master:
@@ -214,7 +209,7 @@ kind: LocustTest
214209
metadata:
215210
name: demo
216211
spec:
217-
image: locustio/locust:2.20.0
212+
image: locustio/locust:2.43.3
218213
testFiles:
219214
configMapRef: demo-test
220215
master:

0 commit comments

Comments
 (0)