2015-03-19 23:14:13 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors.
|
2015-03-19 23:14:13 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package kubelet
|
|
|
|
|
|
|
|
import (
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2016-02-05 21:58:03 +00:00
|
|
|
clientset "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
|
2015-09-09 21:00:41 +00:00
|
|
|
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
|
2015-03-19 23:14:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This just exports required functions from kubelet proper, for use by network
|
|
|
|
// plugins.
|
|
|
|
type networkHost struct {
|
|
|
|
kubelet *Kubelet
|
|
|
|
}
|
|
|
|
|
|
|
|
func (nh *networkHost) GetPodByName(name, namespace string) (*api.Pod, bool) {
|
|
|
|
return nh.kubelet.GetPodByName(name, namespace)
|
|
|
|
}
|
|
|
|
|
2016-02-01 22:30:47 +00:00
|
|
|
func (nh *networkHost) GetKubeClient() clientset.Interface {
|
2015-03-19 23:14:13 +00:00
|
|
|
return nh.kubelet.kubeClient
|
|
|
|
}
|
2015-09-09 21:00:41 +00:00
|
|
|
|
|
|
|
func (nh *networkHost) GetRuntime() kubecontainer.Runtime {
|
|
|
|
return nh.kubelet.GetRuntime()
|
|
|
|
}
|