2015-01-10 07:07:08 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2015-01-10 07:07:08 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Reads the pod configuration from the Kubernetes apiserver.
|
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2015-09-03 21:40:58 +00:00
|
|
|
"k8s.io/kubernetes/pkg/client/cache"
|
2016-02-05 21:58:03 +00:00
|
|
|
clientset "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/fields"
|
2015-10-09 17:24:31 +00:00
|
|
|
kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
|
2015-01-10 07:07:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewSourceApiserver creates a config source that watches and pulls from the apiserver.
|
2016-02-01 22:30:47 +00:00
|
|
|
func NewSourceApiserver(c *clientset.Clientset, nodeName string, updates chan<- interface{}) {
|
2016-02-12 18:58:43 +00:00
|
|
|
lw := cache.NewListWatchFromClient(c.CoreClient, "pods", api.NamespaceAll, fields.OneTermEqualSelector(api.PodHostField, nodeName))
|
2015-01-10 07:07:08 +00:00
|
|
|
newSourceApiserverFromLW(lw, updates)
|
|
|
|
}
|
|
|
|
|
2015-03-09 14:23:52 +00:00
|
|
|
// newSourceApiserverFromLW holds creates a config source that watches and pulls from the apiserver.
|
2015-01-10 07:07:08 +00:00
|
|
|
func newSourceApiserverFromLW(lw cache.ListerWatcher, updates chan<- interface{}) {
|
|
|
|
send := func(objs []interface{}) {
|
2015-04-03 22:51:50 +00:00
|
|
|
var pods []*api.Pod
|
2015-01-10 07:07:08 +00:00
|
|
|
for _, o := range objs {
|
2015-04-03 22:51:50 +00:00
|
|
|
pods = append(pods, o.(*api.Pod))
|
2015-01-10 07:07:08 +00:00
|
|
|
}
|
2015-10-09 17:24:31 +00:00
|
|
|
updates <- kubetypes.PodUpdate{Pods: pods, Op: kubetypes.SET, Source: kubetypes.ApiserverSource}
|
2015-01-10 07:07:08 +00:00
|
|
|
}
|
2015-04-08 11:29:29 +00:00
|
|
|
cache.NewReflector(lw, &api.Pod{}, cache.NewUndeltaStore(send, cache.MetaNamespaceKeyFunc), 0).Run()
|
2015-01-10 07:07:08 +00:00
|
|
|
}
|