kubenet_unsupported.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // +build !linux
  2. /*
  3. Copyright 2014 The Kubernetes Authors.
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. */
  14. package kubenet
  15. import (
  16. "fmt"
  17. kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
  18. kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
  19. "k8s.io/kubernetes/pkg/kubelet/dockershim/network"
  20. )
  21. type kubenetNetworkPlugin struct {
  22. network.NoopNetworkPlugin
  23. }
  24. func NewPlugin(networkPluginDirs []string, cacheDir string) network.NetworkPlugin {
  25. return &kubenetNetworkPlugin{}
  26. }
  27. func (plugin *kubenetNetworkPlugin) Init(host network.Host, hairpinMode kubeletconfig.HairpinMode, nonMasqueradeCIDR string, mtu int) error {
  28. return fmt.Errorf("Kubenet is not supported in this build")
  29. }
  30. func (plugin *kubenetNetworkPlugin) Name() string {
  31. return "kubenet"
  32. }
  33. func (plugin *kubenetNetworkPlugin) SetUpPod(namespace string, name string, id kubecontainer.ContainerID, annotations, options map[string]string) error {
  34. return fmt.Errorf("Kubenet is not supported in this build")
  35. }
  36. func (plugin *kubenetNetworkPlugin) TearDownPod(namespace string, name string, id kubecontainer.ContainerID) error {
  37. return fmt.Errorf("Kubenet is not supported in this build")
  38. }
  39. func (plugin *kubenetNetworkPlugin) GetPodNetworkStatus(namespace string, name string, id kubecontainer.ContainerID) (*network.PodNetworkStatus, error) {
  40. return nil, fmt.Errorf("Kubenet is not supported in this build")
  41. }