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 (
|
2017-06-22 18:24:23 +00:00
|
|
|
"k8s.io/api/core/v1"
|
2017-01-22 03:36:02 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2017-01-19 14:50:16 +00:00
|
|
|
"k8s.io/apimachinery/pkg/fields"
|
2017-01-11 14:09:48 +00:00
|
|
|
"k8s.io/apimachinery/pkg/types"
|
2017-05-27 13:34:58 +00:00
|
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
2017-06-23 20:56:37 +00:00
|
|
|
clientset "k8s.io/client-go/kubernetes"
|
2017-01-24 14:11:51 +00:00
|
|
|
"k8s.io/client-go/tools/cache"
|
2017-11-08 22:34:54 +00:00
|
|
|
api "k8s.io/kubernetes/pkg/apis/core"
|
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.
|
2017-01-31 22:34:39 +00:00
|
|
|
func NewSourceApiserver(c clientset.Interface, nodeName types.NodeName, updates chan<- interface{}) {
|
2017-10-25 15:54:32 +00:00
|
|
|
lw := cache.NewListWatchFromClient(c.CoreV1().RESTClient(), "pods", metav1.NamespaceAll, fields.OneTermEqualSelector(api.PodHostField, string(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{}) {
|
2016-11-18 20:50:58 +00:00
|
|
|
var pods []*v1.Pod
|
2015-01-10 07:07:08 +00:00
|
|
|
for _, o := range objs {
|
2016-11-28 19:56:21 +00:00
|
|
|
pods = append(pods, o.(*v1.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
|
|
|
}
|
2017-05-27 13:34:58 +00:00
|
|
|
r := cache.NewReflector(lw, &v1.Pod{}, cache.NewUndeltaStore(send, cache.MetaNamespaceKeyFunc), 0)
|
|
|
|
go r.Run(wait.NeverStop)
|
2015-01-10 07:07:08 +00:00
|
|
|
}
|