kubernetesk8s.io/kubernetes/pkg/storage/storagebackend Index | Files

package storagebackend

import "k8s.io/kubernetes/pkg/storage/storagebackend"

Index

Constants

const (
	StorageTypeUnset = ""
	StorageTypeETCD2 = "etcd2"
	StorageTypeETCD3 = "etcd3"
)

Functions

func Create

func Create(c Config) (storage.Interface, error)

Create creates a storage backend based on given config.

Types

type Config

type Config struct {
	// Type defines the type of storage backend, e.g. "etcd2", etcd3". Default ("") is "etcd2".
	Type string
	// Codec is used to serialize/deserialize objects.
	Codec runtime.Codec
	// Prefix is the prefix to all keys passed to storage.Interface methods.
	Prefix string
	// ServerList is the list of storage servers to connect with.
	ServerList []string
	// TLS credentials
	KeyFile  string
	CertFile string
	CAFile   string
	// Quorum indicates that whether read operations should be quorum-level consistent.
	Quorum bool
	// DeserializationCacheSize is the size of cache of deserialized objects.
	// Currently this is only supported in etcd2.
	// We will drop the cache once using protobuf.
	DeserializationCacheSize int
}

Config is configuration for creating a storage backend.

Source Files

config.go etcd3.go etdc2.go

Version
v1.3.0-alpha.4
Published
May 17, 2016
Platform
js/wasm
Imports
14 packages
Last checked
56 seconds ago

Tools for package owners.