Documentation ¶
Overview ¶
Package config holds the typed objects that define the schemas for ConfigMap objects that pertain to our API objects.
Index ¶
Constants ¶
const ( // DefaultsConfigName is the name of config map for the default // configs that brokers should use DefaultsConfigName = "config-br-defaults" // BrokerDefaultsKey is the name of the key that's used for finding // defaults for broker configs. BrokerDefaultsKey = "default-br-config" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ClassAndKRef ¶ added in v0.14.0
type ClassAndKRef struct { BrokerClass string `json:"brokerClass,omitempty"` *duckv1.KReference `json:",inline"` }
ClassAndKRef contains configuration for a given namespace for broker. Allows configuring both the Class of the Broker as well as the reference to the config it should use
func (*ClassAndKRef) DeepCopy ¶ added in v0.14.0
func (in *ClassAndKRef) DeepCopy() *ClassAndKRef
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClassAndKRef.
func (*ClassAndKRef) DeepCopyInto ¶ added in v0.14.0
func (in *ClassAndKRef) DeepCopyInto(out *ClassAndKRef)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Config ¶
type Config struct {
Defaults *Defaults
}
Config holds the collection of configurations that we attach to contexts. +k8s:deepcopy-gen=false
func FromContext ¶
FromContext extracts a Config from the provided context.
func FromContextOrDefaults ¶
FromContextOrDefaults is like FromContext, but when no Config is attached it returns a Config populated with the defaults for each of the Config fields.
type Defaults ¶
type Defaults struct { // NamespaceDefaultsConfig are the default Broker Configs for each namespace. // Namespace is the key, the value is the KReference to the config. NamespaceDefaultsConfig map[string]*ClassAndKRef `json:"namespaceDefaults,omitempty"` // ClusterDefaultBrokerConfig is the default broker config for all the namespaces that // are not in NamespaceDefaultBrokerConfigs. ClusterDefault *ClassAndKRef `json:"clusterDefault,omitempty"` }
Defaults includes the default values to be populated by the webhook.
func NewDefaultsConfigFromConfigMap ¶
NewDefaultsConfigFromConfigMap creates a Defaults from the supplied configMap
func NewDefaultsConfigFromMap ¶
NewDefaultsConfigFromMap creates a Defaults from the supplied Map
func (*Defaults) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Defaults.
func (*Defaults) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Defaults) GetBrokerClass ¶ added in v0.14.0
GetBrokerClass returns a namespace specific Broker Class, and if that doesn't exist, return a Cluster Default and if that doesn't exist return an error.
func (*Defaults) GetBrokerConfig ¶
func (d *Defaults) GetBrokerConfig(ns string) (*duckv1.KReference, error)
GetBrokerConfig returns a namespace specific Broker Configuration, and if that doesn't exist, return a Cluster Default and if that doesn't exist return an 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.