package storage
import "k8s.io/kubernetes/pkg/registry/core/service/allocator/storage"
Index ¶
- type Etcd
- func NewEtcd(alloc allocator.Snapshottable, baseKey string, config *storagebackend.ConfigForResource) (*Etcd, error)
- func (e *Etcd) Allocate(offset int) (bool, error)
- func (e *Etcd) AllocateNext() (int, bool, error)
- func (e *Etcd) CreateOrUpdate(snapshot *api.RangeAllocation) error
- func (e *Etcd) Destroy()
- func (e *Etcd) ForEach(fn func(int))
- func (e *Etcd) Free() int
- func (e *Etcd) Get() (*api.RangeAllocation, error)
- func (e *Etcd) Has(item int) bool
- func (e *Etcd) Release(item int) error
Types ¶
type Etcd ¶
type Etcd struct {
// contains filtered or unexported fields
}
Etcd exposes a service.Allocator TODO: allow multiple allocations to be tried at once TODO: subdivide the keyspace to reduce conflicts TODO: investigate issuing a CAS without reading first
func NewEtcd ¶
func NewEtcd(alloc allocator.Snapshottable, baseKey string, config *storagebackend.ConfigForResource) (*Etcd, error)
NewEtcd returns an allocator that is backed by Etcd and can manage persisting the snapshot state of allocation after each allocation is made.
func (*Etcd) Allocate ¶
Allocate attempts to allocate the item.
func (*Etcd) AllocateNext ¶
AllocateNext attempts to allocate the next item.
func (*Etcd) CreateOrUpdate ¶
func (e *Etcd) CreateOrUpdate(snapshot *api.RangeAllocation) error
CreateOrUpdate attempts to update the current etcd state with the provided allocation.
func (*Etcd) Destroy ¶
func (e *Etcd) Destroy()
Destroy implement allocator.Interface::Destroy
func (*Etcd) ForEach ¶
func (*Etcd) Free ¶
Free implements allocator.Interface::Free
func (*Etcd) Get ¶
func (e *Etcd) Get() (*api.RangeAllocation, error)
Get returns an api.RangeAllocation that represents the current state in etcd. If the key does not exist, the object will have an empty ResourceVersion.
func (*Etcd) Has ¶
Has implements allocator.Interface::Has
func (*Etcd) Release ¶
Release attempts to release the provided item.
Source Files ¶
storage.go
- Version
- v1.33.0 (latest)
- Published
- Apr 23, 2025
- Platform
- linux/amd64
- Imports
- 15 packages
- Last checked
- 3 hours ago –
Tools for package owners.