Kubernetes LeaderElection Provider
editKubernetes LeaderElection Provider
editProvides the option to enable leaderelection between a set of Elastic Agents
running on Kubernetes. Only one Elastic Agent at a time will be the holder of the leader
lock and based on this, configurations can be enabled with the condition
that the Elastic Agent holds the leadership. This is useful in cases where the Elastic Agent between a set of Elastic Agents collects cluster wide metrics for the Kubernetes cluster, such as the kube-state-metrics
endpoint.
Provider needs a kubeconfig
file to establish a connection to Kubernetes API.
It can automatically reach the API if it’s running in an InCluster environment (Elastic Agent runs as Pod).
providers.kubernetes_leaderelection: #enabled: true #kube_config: /Users/elastic-agent/.kube/config #kube_client_options: # qps: 5 # burst: 10 #leader_lease: agent-k8s-leader-lock
-
enabled
-
(Optional) Defaults to true. To explicitly disable the LeaderElection provider,
set
enabled: false
. -
kube_config
-
(Optional) Use the given config file as configuration for the Kubernetes
client. If
kube_config
is not set,KUBECONFIG
environment variable will be checked and will fall back to InCluster if it’s not present. -
kube_client_options
-
(Optional) Configure additional options for the Kubernetes client.
Supported options are
qps
andburst
. If not set, the Kubernetes client’s default QPS and burst settings are used. -
leader_lease
-
(Optional) Specify the name of the leader lease.
This is set to
elastic-agent-cluster-leader
by default.
The available key is:
Key | Type | Description |
---|---|---|
|
|
The value of the leadership flag. This is set to |
Enabling configurations only when on leadership
editUse conditions based on the kubernetes_leaderelection.leader
key to leverage the leaderelection provider and enable specific inputs only when the Elastic Agent holds the leadership lock.
The below example enables the state_container
metricset only when the leadership lock is acquired:
- data_stream: dataset: kubernetes.state_container type: metrics metricsets: - state_container add_metadata: true hosts: - 'kube-state-metrics:8080' period: 10s condition: ${kubernetes_leaderelection.leader} == true