Documentation ¶
Index ¶
- func SliceToClientObjectSlice(s []*v1.ConfigMap) []client.Object
- func ValidateDestinations(self any, destinations []*genruntime.ConfigMapDestination, ...) (admission.Warnings, error)
- func ValidateOptionalReferences(pairs []*OptionalReferencePair) (admission.Warnings, error)
- type Collector
- type Exporter
- type OptionalReferencePair
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateDestinations ¶ added in v2.9.0
func ValidateDestinations( self any, destinations []*genruntime.ConfigMapDestination, destinationExpressions []*core.DestinationExpression, ) (admission.Warnings, error)
ValidateDestinations checks that no two destinations are writing to the same configmap/key, as that could cause those values to overwrite one another.
func ValidateOptionalReferences ¶ added in v2.9.0
func ValidateOptionalReferences(pairs []*OptionalReferencePair) (admission.Warnings, error)
ValidateOptionalReferences checks that only one of Foo and FooFromConfig are set
Types ¶
type Collector ¶
type Collector struct {
// contains filtered or unexported fields
}
Collector collects configmap values and their associated genruntime.ConfigMapDestination's and produces a merged set of v1.ConfigMap's that can be written.
func NewCollector ¶
NewCollector creates a new Collector for collecting multiple config map writes together
func (*Collector) AddBinaryValue ¶
func (c *Collector) AddBinaryValue(dest *genruntime.ConfigMapDestination, value []byte)
AddBinaryValue adds the dest and ConfigMapDestination pair to the collector. If another value has already been added going to the same config map (but with a different key) the new key is merged into the existing map.
func (*Collector) AddValue ¶
func (c *Collector) AddValue(dest *genruntime.ConfigMapDestination, value string)
AddValue adds the dest and ConfigMapDestination pair to the collector. If another value has already been added going to the same config map (but with a different key) the new key is merged into the existing map.
type Exporter ¶ added in v2.10.0
type Exporter interface {
ConfigMapDestinationExpressions() []*core.DestinationExpression
}
Exporter defines an interface for exporting ConfigMaps based on CEL expressions.
type OptionalReferencePair ¶ added in v2.9.0
type OptionalReferencePair struct { Value *string Ref *genruntime.ConfigMapReference Name string RefName string }
OptionalReferencePair represents an optional configmap pair. Each pair has two optional fields, a string and a ConfigMapReference. This type is used purely for validation. The actual user supplied types are inline on the objects themselves as two properties: Foo and FooFromConfig