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
{{ message }}
This repository was archived by the owner on Apr 25, 2023. It is now read-only.
1. Start a [kind](https://kind.sigs.k8s.io/) cluster:
73
+
```
74
+
kind create cluster
75
+
```
76
+
1. Deploy kubefed:
77
+
```
78
+
make deploy.kind
79
+
```
80
+
81
+
You now have a Kubernetes cluster with kubefed up and running. The cluster has been joined to itself and you can test federation of resources like this:
82
+
83
+
1. Verify the `KubeFedCluster` exists and is ready:
84
+
```
85
+
kubectl -n kube-federation-system get kubefedcluster
86
+
```
87
+
**If you're on macOS** the cluster will not immediately show as ready. You need to [change the API endpoint's URL first](https://github.com/kubernetes-sigs/kubefed/blob/master/docs/cluster-registration.md#joining-kind-clusters-on-macos):
88
+
```
89
+
./scripts/fix-joined-kind-clusters.sh
90
+
```
91
+
1. Create a namespace to be federated:
92
+
```
93
+
kubectl create ns federate-me
94
+
```
95
+
1. Tell kubefed to federate that namespace (and the resources in it):
0 commit comments