You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/setup/quickstart.md
+50-3Lines changed: 50 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,60 @@ description: >
12
12
13
13
## Start with kube-bind
14
14
15
-
### Deploy a kube-bind Backend
15
+
### Quick Development Setup
16
16
17
-
You can deploy a kube-bind backend using helm (recommended):
17
+
**Note:** This setup requires Docker as it uses advanced network configuration to minimize external DNS dependencies and enable inter-cluster connectivity.
18
+
19
+
For a quick development environment with local Kind clusters, use the `kubectl bind dev` command:
20
+
21
+
```bash
22
+
kubectl bind dev create
23
+
```
24
+
25
+
This command will:
26
+
- Create two Kind clusters: `kind-provider` (API provider) and `kind-consumer` (API consumer)
27
+
- Deploy the kube-bind backend to the provider cluster
28
+
- Generate kubeconfig files for both clusters
29
+
- Set up local DNS entries for `kube-bind.dev.local`
30
+
- Start the kube-bind server at `http://kube-bind.dev.local:8080`
31
+
32
+
After the development environment is ready, you can:
0 commit comments