-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy pathplugins.go
More file actions
16 lines (14 loc) · 805 Bytes
/
plugins.go
File metadata and controls
16 lines (14 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package start
import (
// Admission control plug-ins used by OpenShift
_ "github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/admit"
_ "github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/limitranger"
_ "github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/namespace/exists"
_ "github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/namespace/lifecycle"
_ "github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/resourcequota"
_ "github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/serviceaccount"
_ "github.com/openshift/origin/pkg/build/admission"
_ "github.com/openshift/origin/pkg/project/admission/lifecycle"
_ "github.com/openshift/origin/pkg/project/admission/nodeenv"
_ "github.com/openshift/origin/pkg/security/admission"
)