Documentation
¶
Overview ¶
Package leaderelection provides a Kubernetes leader election implementation for coordinating distributed components in the vArmor system.
This package is modified from "github.com/kyverno/kyverno/pkg/leaderelection". The main enhancement is the support for dynamically selecting leaseDuration, renewDeadline, and retryPeriod based on the cluster size, which improves leader election performance and reliability in large-scale deployments.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interface ¶
type Interface interface {
// Run is a blocking call that runs a leader election
Run(ctx context.Context)
// ID returns this instances unique identifier
ID() string
// Name returns the name of the leader election
Name() string
// Namespace is the Kubernetes namespace used to coordinate the leader election
Namespace() string
// IsLeader indicates if this instance is the leader
IsLeader() bool
// GetLeader returns the leader ID
GetLeader() string
}
Click to show internal directories.
Click to hide internal directories.