Skip to content

Commit 521b477

Browse files
committed
add minimal readme
1 parent 524a69a commit 521b477

File tree

1 file changed

+32
-0
lines changed
  • operator/e2e/cmd/setup-debug-cluster

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# setup-debug-cluster
2+
3+
Creates a local K3D cluster identical to the one used in E2E tests, with Grove operator and Kai scheduler pre-installed.
4+
5+
## Usage
6+
7+
```bash
8+
# From this directory
9+
go run .
10+
11+
# Or build and run
12+
go build
13+
./setup-debug-cluster
14+
```
15+
16+
## Options
17+
18+
```
19+
--name Cluster name (default: "grove-e2e-cluster")
20+
--worker-nodes Number of worker nodes (default: 30)
21+
--verbose, -v Enable verbose logging
22+
--quiet, -q Suppress non-error output
23+
--help Show all options
24+
```
25+
26+
## Teardown
27+
28+
Press `Ctrl+C` if running interactively, or:
29+
30+
```bash
31+
k3d cluster delete grove-e2e-cluster
32+
```

0 commit comments

Comments
 (0)