...

Package resourcelock

import "k8s.io/client-go/tools/leaderelection/resourcelock"
Overview
Index

Overview ▾

Index ▾

Constants
func ConcatRawRecord(primaryRaw, secondaryRaw []byte) []byte
func LeaderElectionRecordToLeaseSpec(ler *LeaderElectionRecord) coordinationv1.LeaseSpec
type EventRecorder
type Interface
    func New(lockType string, ns string, name string, coreClient corev1.CoreV1Interface, coordinationClient coordinationv1.CoordinationV1Interface, rlc ResourceLockConfig) (Interface, error)
    func NewFromKubeconfig(lockType string, ns string, name string, rlc ResourceLockConfig, kubeconfig *restclient.Config, renewDeadline time.Duration) (Interface, error)
type LeaderElectionRecord
    func LeaseSpecToLeaderElectionRecord(spec *coordinationv1.LeaseSpec) *LeaderElectionRecord
type LeaseLock
    func (ll *LeaseLock) Create(ctx context.Context, ler LeaderElectionRecord) error
    func (ll *LeaseLock) Describe() string
    func (ll *LeaseLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error)
    func (ll *LeaseLock) Identity() string
    func (ll *LeaseLock) RecordEvent(s string)
    func (ll *LeaseLock) Update(ctx context.Context, ler LeaderElectionRecord) error
type MultiLock
    func (ml *MultiLock) Create(ctx context.Context, ler LeaderElectionRecord) error
    func (ml *MultiLock) Describe() string
    func (ml *MultiLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error)
    func (ml *MultiLock) Identity() string
    func (ml *MultiLock) RecordEvent(s string)
    func (ml *MultiLock) Update(ctx context.Context, ler LeaderElectionRecord) error
type ResourceLockConfig

Package files

interface.go leaselock.go multilock.go

Constants

const (
    LeaderElectionRecordAnnotationKey = "control-plane.alpha.kubernetes.io/leader"

    LeasesResourceLock = "leases"
)
const (
    UnknownLeader = "leaderelection.k8s.io/unknown"
)

func ConcatRawRecord

func ConcatRawRecord(primaryRaw, secondaryRaw []byte) []byte

func LeaderElectionRecordToLeaseSpec

func LeaderElectionRecordToLeaseSpec(ler *LeaderElectionRecord) coordinationv1.LeaseSpec

type EventRecorder

EventRecorder records a change in the ResourceLock.

type EventRecorder interface {
    Eventf(obj runtime.Object, eventType, reason, message string, args ...interface{})
}

type Interface

Interface offers a common interface for locking on arbitrary resources used in leader election. The Interface is used to hide the details on specific implementations in order to allow them to change over time. This interface is strictly for use by the leaderelection code.

type Interface interface {
    // Get returns the LeaderElectionRecord
    Get(ctx context.Context) (*LeaderElectionRecord, []byte, error)

    // Create attempts to create a LeaderElectionRecord
    Create(ctx context.Context, ler LeaderElectionRecord) error

    // Update will update and existing LeaderElectionRecord
    Update(ctx context.Context, ler LeaderElectionRecord) error

    // RecordEvent is used to record events
    RecordEvent(string)

    // Identity will return the locks Identity
    Identity() string

    // Describe is used to convert details on current resource lock
    // into a string
    Describe() string
}

func New

func New(lockType string, ns string, name string, coreClient corev1.CoreV1Interface, coordinationClient coordinationv1.CoordinationV1Interface, rlc ResourceLockConfig) (Interface, error)

Manufacture will create a lock of a given type according to the input parameters

func NewFromKubeconfig

func NewFromKubeconfig(lockType string, ns string, name string, rlc ResourceLockConfig, kubeconfig *restclient.Config, renewDeadline time.Duration) (Interface, error)

NewFromKubeconfig will create a lock of a given type according to the input parameters. Timeout set for a client used to contact to Kubernetes should be lower than RenewDeadline to keep a single hung request from forcing a leader loss. Setting it to max(time.Second, RenewDeadline/2) as a reasonable heuristic.

type LeaderElectionRecord

LeaderElectionRecord is the record that is stored in the leader election annotation. This information should be used for observational purposes only and could be replaced with a random string (e.g. UUID) with only slight modification of this code. TODO(mikedanese): this should potentially be versioned

type LeaderElectionRecord struct {
    // HolderIdentity is the ID that owns the lease. If empty, no one owns this lease and
    // all callers may acquire. Versions of this library prior to Kubernetes 1.14 will not
    // attempt to acquire leases with empty identities and will wait for the full lease
    // interval to expire before attempting to reacquire. This value is set to empty when
    // a client voluntarily steps down.
    HolderIdentity       string      `json:"holderIdentity"`
    LeaseDurationSeconds int         `json:"leaseDurationSeconds"`
    AcquireTime          metav1.Time `json:"acquireTime"`
    RenewTime            metav1.Time `json:"renewTime"`
    LeaderTransitions    int         `json:"leaderTransitions"`
}

func LeaseSpecToLeaderElectionRecord

func LeaseSpecToLeaderElectionRecord(spec *coordinationv1.LeaseSpec) *LeaderElectionRecord

type LeaseLock

type LeaseLock struct {
    // LeaseMeta should contain a Name and a Namespace of a
    // LeaseMeta object that the LeaderElector will attempt to lead.
    LeaseMeta  metav1.ObjectMeta
    Client     coordinationv1client.LeasesGetter
    LockConfig ResourceLockConfig
    // contains filtered or unexported fields
}

func (*LeaseLock) Create

func (ll *LeaseLock) Create(ctx context.Context, ler LeaderElectionRecord) error

Create attempts to create a Lease

func (*LeaseLock) Describe

func (ll *LeaseLock) Describe() string

Describe is used to convert details on current resource lock into a string

func (*LeaseLock) Get

func (ll *LeaseLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error)

Get returns the election record from a Lease spec

func (*LeaseLock) Identity

func (ll *LeaseLock) Identity() string

Identity returns the Identity of the lock

func (*LeaseLock) RecordEvent

func (ll *LeaseLock) RecordEvent(s string)

RecordEvent in leader election while adding meta-data

func (*LeaseLock) Update

func (ll *LeaseLock) Update(ctx context.Context, ler LeaderElectionRecord) error

Update will update an existing Lease spec.

type MultiLock

MultiLock is used for lock's migration

type MultiLock struct {
    Primary   Interface
    Secondary Interface
}

func (*MultiLock) Create

func (ml *MultiLock) Create(ctx context.Context, ler LeaderElectionRecord) error

Create attempts to create both primary lock and secondary lock

func (*MultiLock) Describe

func (ml *MultiLock) Describe() string

Describe is used to convert details on current resource lock into a string

func (*MultiLock) Get

func (ml *MultiLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error)

Get returns the older election record of the lock

func (*MultiLock) Identity

func (ml *MultiLock) Identity() string

Identity returns the Identity of the lock

func (*MultiLock) RecordEvent

func (ml *MultiLock) RecordEvent(s string)

RecordEvent in leader election while adding meta-data

func (*MultiLock) Update

func (ml *MultiLock) Update(ctx context.Context, ler LeaderElectionRecord) error

Update will update and existing annotation on both two resources.

type ResourceLockConfig

ResourceLockConfig common data that exists across different resource locks

type ResourceLockConfig struct {
    // Identity is the unique string identifying a lease holder across
    // all participants in an election.
    Identity string
    // EventRecorder is optional.
    EventRecorder EventRecorder
}