Documentation ¶
Index ¶
- Constants
- func ToContext(ctx context.Context, c *PolicyControllerConfig) context.Context
- type PolicyControllerConfig
- func FromContext(ctx context.Context) *PolicyControllerConfig
- func FromContextOrDefaults(ctx context.Context) *PolicyControllerConfig
- func NewPolicyControllerConfigFromConfigMap(config *corev1.ConfigMap) (*PolicyControllerConfig, error)
- func NewPolicyControllerConfigFromMap(data map[string]string) (*PolicyControllerConfig, error)
- type Store
Constants ¶
const ( // PolicyControllerConfigName is the name of the configmap used to configure // policy-controller. PolicyControllerConfigName = "config-policy-controller" //nolint: gosec // Specifies that if an image is not found to match any policy, it should // be rejected. DenyAll = "deny" // Specifies that if an image is not found to match any policy, it should // be allowed. AllowAll = "allow" WarnAll = "warn" NoMatchPolicyKey = "no-match-policy" FailOnEmptyAuthorities = "fail-on-empty-authorities" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type PolicyControllerConfig ¶
type PolicyControllerConfig struct { // NoMatchPolicy says what do in the case where an image does not match // any policy. NoMatchPolicy string `json:"no-match-policy"` // FailOnEmptyAuthorities configures the validating webhook to allow creating CIP without a list authorities FailOnEmptyAuthorities bool `json:"fail-on-empty-authorities"` }
PolicyControllerConfig controls the behaviour of policy-controller that needs to be more flexible than requiring a controller restart. Some examples are controlling behaviour for what to do if no matching policies are found. Point is that these apply to the whole controller instead of specific CIP policies that apply only to matching images.
func FromContext ¶
func FromContext(ctx context.Context) *PolicyControllerConfig
FromContext extracts a PolicyControllerConfig from the provided context.
func FromContextOrDefaults ¶
func FromContextOrDefaults(ctx context.Context) *PolicyControllerConfig
FromContextOrDefaults is like FromContext, but when no PolicyControllerConfig is attached, it returns a PolicyControllerConfig populated with the defaults for each of the fields.
func NewPolicyControllerConfigFromConfigMap ¶
func NewPolicyControllerConfigFromConfigMap(config *corev1.ConfigMap) (*PolicyControllerConfig, error)
func NewPolicyControllerConfigFromMap ¶
func NewPolicyControllerConfigFromMap(data map[string]string) (*PolicyControllerConfig, error)
type Store ¶
type Store struct {
*configmap.UntypedStore
}
Store is a typed wrapper around configmap.Untyped store to handle our configmaps. +k8s:deepcopy-gen=false
func NewStore ¶
NewStore creates a new store of Configs and optionally calls functions when ConfigMaps are updated.
func (*Store) Load ¶
func (s *Store) Load() *PolicyControllerConfig
Load creates a PolicyControllerConfig from the current config state of the Store.