Skip to content
Snippets Groups Projects
Commit 42894f36 authored by Marco Lorini's avatar Marco Lorini
Browse files

2020-10-06 ML: readme add JOIN section

parent 3dd45927
No related branches found
No related tags found
No related merge requests found
...@@ -136,3 +136,26 @@ $ helm install kubefed-charts/kubefed --name kubefed --version=0.2.0-alpha.1 --n ...@@ -136,3 +136,26 @@ $ helm install kubefed-charts/kubefed --name kubefed --version=0.2.0-alpha.1 --n
**N.B.**: use the same version for client and server. **N.B.**: use the same version for client and server.
**N.B.**: in this way the Control Plane can find Federated resources in each namespace, to limit this action in a specific namespace add the parameter `--set global.scope=Namespaced`. **N.B.**: in this way the Control Plane can find Federated resources in each namespace, to limit this action in a specific namespace add the parameter `--set global.scope=Namespaced`.
## Create the federation
To create a Kubernetes Federation it is necessary federate Member Clusters. Use the KubeFed `join` command:
```
$ kubefedctl join fed-cluster-member1 --cluster-context k8s-context-member1 --host-cluster-context k8s-context-host --v=2
$ kubefedctl join fed-cluster-member2 --cluster-context k8s-context-member2 --host-cluster-context k8s-context-host --v=2
```
Remove cluster to the federation, `unjoin` command:
```
$ kubefedctl unjoin fed-cluster-member1 --cluster-context k8s-context-member1 --host-cluster-context k8s-context-host --v=2
$ kubefedctl unjoin fed-cluster-member2 --cluster-context k8s-context-member2 --host-cluster-context k8s-context-host --v=2
```
Commando to show federated clusters:
```
$ kubectl -n kube-federation-system get kubefedclusters
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment