2014-08-19 23:40:47 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2014-08-19 23:40:47 +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.
|
|
|
|
*/
|
|
|
|
|
2015-02-07 22:13:22 +00:00
|
|
|
package app
|
2014-08-19 23:40:47 +00:00
|
|
|
|
|
|
|
// This file exists to force the desired plugin implementations to be linked.
|
|
|
|
// This should probably be part of some configuration fed into the build for a
|
|
|
|
// given binary target.
|
|
|
|
import (
|
2015-01-30 17:04:39 +00:00
|
|
|
// Cloud providers
|
2015-08-12 05:36:51 +00:00
|
|
|
_ "k8s.io/kubernetes/pkg/cloudprovider/providers"
|
2015-01-06 16:44:43 +00:00
|
|
|
|
2015-01-30 17:04:39 +00:00
|
|
|
// Admission policies
|
2015-08-05 22:03:47 +00:00
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/admit"
|
2015-12-18 21:48:49 +00:00
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/alwayspullimages"
|
2015-08-05 22:03:47 +00:00
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/deny"
|
2015-09-15 16:43:59 +00:00
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/exec"
|
2015-08-28 05:54:45 +00:00
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/initialresources"
|
2015-08-05 22:03:47 +00:00
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/limitranger"
|
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/namespace/autoprovision"
|
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/namespace/exists"
|
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/namespace/lifecycle"
|
2015-11-29 19:00:49 +00:00
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/persistentvolume/label"
|
2015-08-05 22:03:47 +00:00
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/resourcequota"
|
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/securitycontext/scdeny"
|
|
|
|
_ "k8s.io/kubernetes/plugin/pkg/admission/serviceaccount"
|
2014-08-19 23:40:47 +00:00
|
|
|
)
|