import "github.com/igm/kubernetes/pkg/kubelet/config"
Package config implements the pod configuration readers.
Reads the pod configuration from etcd using the Kubernetes etcd schema.
Reads the pod configuration from file or a directory of files.
Reads the pod configuration from an HTTP GET response.
config.go doc.go etcd.go file.go http.go
const ( // PodConfigNotificationSnapshot delivers the full configuration as a SET whenever // any change occurs. PodConfigNotificationSnapshot = iota // PodConfigNotificationSnapshotAndUpdates delivers an UPDATE message whenever pods are // changed, and a SET message if there are any additions or removals. PodConfigNotificationSnapshotAndUpdates // PodConfigNotificationIncremental delivers ADD, UPDATE, and REMOVE to the update channel. PodConfigNotificationIncremental )
func NewSourceEtcd(key string, client tools.EtcdClient, updates chan<- interface{})
NewSourceEtcd creates a config source that watches and pulls from a key in etcd
type PodConfig struct {
// contains filtered or unexported fields
}
PodConfig is a configuration mux that merges many sources of pod configuration into a single consistent structure, and then delivers incremental change notifications to listeners in order.
func NewPodConfig(mode PodConfigNotificationMode) *PodConfig
NewPodConfig creates an object that can merge many configuration sources into a stream of normalized updates to a pod configuration.
Channel creates or returns a config source channel. The channel only accepts PodUpdates
Sync requests the full configuration be delivered to the update channel.
Updates returns a channel of updates to the configuration, properly denormalized.
PodConfigNotificationMode describes how changes are sent to the update channel.
Package config imports 28 packages (graph). Updated 2018-04-09. Refresh now. Tools for package owners.