Documentation ¶
Overview ¶
Package podsecuritypolicy contains code for validating and defaulting the security context of a pod and its containers according to a security policy.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Provider ¶
type Provider interface { // Create a PodSecurityContext based on the given constraints. Also returns an updated set // of Pod annotations for alpha feature support. CreatePodSecurityContext(pod *api.Pod) (*api.PodSecurityContext, map[string]string, error) // Create a container SecurityContext based on the given constraints. Also returns an updated set // of Pod annotations for alpha feature support. CreateContainerSecurityContext(pod *api.Pod, container *api.Container) (*api.SecurityContext, map[string]string, error) // Ensure a pod's SecurityContext is in compliance with the given constraints. ValidatePodSecurityContext(pod *api.Pod, fldPath *field.Path) field.ErrorList // Ensure a container's SecurityContext is in compliance with the given constraints ValidateContainerSecurityContext(pod *api.Pod, container *api.Container, fldPath *field.Path) field.ErrorList // Get the name of the PSP that this provider was initialized with. GetPSPName() string }
Provider provides the implementation to generate a new security context based on constraints or validate an existing security context against constraints.
func NewSimpleProvider ¶
func NewSimpleProvider(psp *extensions.PodSecurityPolicy, namespace string, strategyFactory StrategyFactory) (Provider, error)
NewSimpleProvider creates a new Provider instance.
type ProviderStrategies ¶
type ProviderStrategies struct { RunAsUserStrategy user.RunAsUserStrategy SELinuxStrategy selinux.SELinuxStrategy AppArmorStrategy apparmor.Strategy FSGroupStrategy group.GroupStrategy SupplementalGroupStrategy group.GroupStrategy CapabilitiesStrategy capabilities.Strategy SysctlsStrategy sysctl.SysctlsStrategy }
ProviderStrategies is a holder for all strategies that the provider requires to be populated.
type StrategyFactory ¶
type StrategyFactory interface { // CreateStrategies creates the strategies that a provider will use. The namespace argument // should be the namespace of the object being checked (the pod's namespace). CreateStrategies(psp *extensions.PodSecurityPolicy, namespace string) (*ProviderStrategies, error) }
StrategyFactory abstracts how the strategies are created from the provider so that you may implement your own custom strategies that may pull information from other resources as necessary. For example, if you would like to populate the strategies with values from namespace annotations you may create a factory with a client that can pull the namespace and populate the appropriate values.
func NewSimpleStrategyFactory ¶
func NewSimpleStrategyFactory() StrategyFactory
Directories ¶
Path | Synopsis |
---|---|
Package capabilities contains code for validating and defaulting a pod's kernel capabilities according to a security policy.
|
Package capabilities contains code for validating and defaulting a pod's kernel capabilities according to a security policy. |
Package group contains code for validating and defaulting the FSGroup and supplemental groups of a pod according to a security policy.
|
Package group contains code for validating and defaulting the FSGroup and supplemental groups of a pod according to a security policy. |
Package selinux contains code for validating and defaulting the SELinux context of a pod according to a security policy.
|
Package selinux contains code for validating and defaulting the SELinux context of a pod according to a security policy. |
Package user contains code for validating and defaulting the UID of a pod or container according to a security policy.
|
Package user contains code for validating and defaulting the UID of a pod or container according to a security policy. |
Package util contains utility code shared amongst different parts of the pod security policy apparatus.
|
Package util contains utility code shared amongst different parts of the pod security policy apparatus. |