admission

package
v0.10.1-0...-dbf77f2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 20, 2015 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetPlugins

func GetPlugins() []string

GetPlugins enumerates the

func RegisterPlugin

func RegisterPlugin(name string, plugin Factory)

RegisterPlugin registers a plugin Factory by name. This is expected to happen during app startup.

Types

type Attributes

type Attributes interface {
	GetNamespace() string
	GetResource() string
	GetOperation() string
	GetObject() runtime.Object
}

Attributes is an interface used by AdmissionController to get information about a request that is used to make an admission decision.

func NewAttributesRecord

func NewAttributesRecord(object runtime.Object, namespace, resource, operation string) Attributes

type Factory

type Factory func(client client.Interface, config io.Reader) (Interface, error)

Factory is a function that returns a Interface for admission decisions. The config parameter provides an io.Reader handler to the factory in order to load specific configurations. If no configuration is provided the parameter is nil.

type Interface

type Interface interface {
	// Admit makes an admission decision based on the request attributes
	Admit(a Attributes) (err error)
}

Interface is an abstract, pluggable interface for Admission Control decisions.

func GetPlugin

func GetPlugin(name string, client client.Interface, config io.Reader) (Interface, error)

GetInterface creates an instance of the named plugin, or nil if the name is not known. The error return is only used if the named provider was known but failed to initialize. The config parameter specifies the io.Reader handler of the configuration file for the cloud provider, or nil for no configuration.

func InitPlugin

func InitPlugin(name string, client client.Interface, configFilePath string) Interface

InitPlugin creates an instance of the named interface

func NewFromPlugins

func NewFromPlugins(client client.Interface, pluginNames []string, configFilePath string) Interface

New returns an admission.Interface that will enforce admission control decisions

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL