mirror of
https://github.com/kubernetes/client-go.git
synced 2025-09-22 11:37:10 +00:00
* feat(*): simplify leader election example * chore(*): fix with comment * chore(*): add os.exit * chore(*): fix typo Kubernetes-commit: 1185012da65edf802f22aff24141c0466a2a3ac8
889 B
889 B
Leader Election Example
This example demonstrates how to use the leader election package.
Running
Run the following three commands in separate terminals. Each terminal needs a unique id
.
# first terminal
go run main.go -kubeconfig=/path/to/kubeconfig -logtostderr=true -lease-lock-name=example -lease-lock-namespace=default -id=1
# second terminal
go run main.go -kubeconfig=/path/to/kubeconfig -logtostderr=true -lease-lock-name=example -lease-lock-namespace=default -id=2
# third terminal
go run main.go -kubeconfig=/path/to/kubeconfig -logtostderr=true -lease-lock-name=example -lease-lock-namespace=default -id=3
You can ignore the
-kubeconfig
flag if you are running these commands in the Kubernetes cluster.
Now kill the existing leader. You will see from the terminal outputs that one of the remaining two processes will be elected as the new leader.