Environment Configurations
This feature was introduced in v1.11.
For more information read the Crossplane feature lifecycle.
This document applies to Crossplane version v1.16 and not to the latest release v1.18.
A Crossplane EnvironmentConfig is a cluster scoped ConfigMap-like resource used by Compositions. Compositions can use the environment to store information from individual resources or to apply patches.
Crossplane supports multiple EnvironmentConfigs, each acting as a unique data store.
When Crossplane creates a composite resource, Crossplane merges all the EnvironmentConfigs referenced in the associated Composition and creates a unique in-memory environment for that composite resource.
The composite resource can read and write data to their unique in-memory environment.
A composite resource can’t read data in another composite resource’s environment.
Enable EnvironmentConfigs
EnvironmentConfigs are an alpha feature. Alpha features aren’t enabled by default.
Enable EnvironmentConfig support by
changing the Crossplane pod setting
and enabling
argument.
1$ kubectl edit deployment crossplane --namespace crossplane-system
2apiVersion: apps/v1
3kind: Deployment
4spec:
5# Removed for brevity
6 template:
7 spec:
8 containers:
9 - args:
10 - core
11 - start
12 - --enable-environment-configs
–enable-environment-configs
with Helm.Create an EnvironmentConfig
An
has a single
object field,
.
An EnvironmentConfig supports any data inside the
field.
Here an example
.
1apiVersion: apiextensions.crossplane.io/v1alpha1
2kind: EnvironmentConfig
3metadata:
4 name: example-environment
5data:
6 locations:
7 us: us-east-2
8 eu: eu-north-1
9 key1: value1
10 key2: value2
11 key3:
12 - item1
13 - item2
Select an EnvironmentConfig
Select the EnvironmentConfigs to use
inside a Composition’s
field.
The
field is a
list of environments this Composition can use.
Select an environment by
or
by
.
A
selects an environment by
.
The
selects an environment
based on the
applied to the environment.
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3metadata:
4 name: example-composition
5spec:
6 environment:
7 environmentConfigs:
8 - type: Reference
9 ref:
10 name: example-environment
11 - type: Selector
12 selector:
13 matchLabels:
14 # Removed for brevity
If a Composition uses multiple
Crossplane merges them together in the order they’re listed.
environmentConfigs
use the same key, the Composition uses the value of the last environment listed.Select by name
Select an environment by name with
.
Define the
object and the
matching the exact name of
the environment.
For example, select the
named
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3metadata:
4 name: example-composition
5spec:
6 environment:
7 environmentConfigs:
8 - type: Reference
9 ref:
10 name: example-environment
Select by label
Select an environment by labels with a
.
Define the
object.
The
object contains a
list of labels to match on.
Selecting a label requires matching both the label
and the value of key.
When matching the label’s value, provide an exact value with a
and provide the value
to match in the
field.
Crossplane can also match a label’s value based on an input in the composite
resource. Use
and provide the field to match in the
field.
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3metadata:
4 name: example-composition
5spec:
6 environment:
7 environmentConfigs:
8 - type: Selector
9 selector:
10 matchLabels:
11 - key: my-label-key
12 type: Value
13 value: my-label-value
14 - key: my-label-key
15 type: FromCompositeFieldPath
16 valueFromFieldPath: spec.parameters.deploy
17 resources:
18 # Removed for brevity
Manage selector results
Selecting environments by labels may return more than one environment.
The Composition sorts all the results by the name of the environments and
only uses the first environment in the sorted list.
Set the
as
to return
all matched environments. Use
to
return a single environment.
Sorting and the selection
only applies to a single
.
This doesn’t change how Compositions merge multiple
.
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3metadata:
4 name: example-composition
5spec:
6 environment:
7 environmentConfigs:
8 - type: Selector
9 selector:
10 mode: Multiple
11 matchLabels:
12 - key: my-label-key
13 type: Value
14 value: my-label-value
15 - key: my-label-key
16 type: FromCompositeFieldPath
17 valueFromFieldPath: spec.parameters.deploy
18 - type: Selector
19 selector:
20 mode: Single
21 matchLabels:
22 - key: my-other-label-key
23 type: Value
24 value: my-other-label-value
25 - key: my-other-label-key
26 type: FromCompositeFieldPath
27 valueFromFieldPath: spec.parameters.deploy
When using
limit the
number of returned environments with
and define the
maximum number of environments returned.
Use minMatch
and define the minimum
number of environments returned.
The Composition sorts the returned environments alphabetically by name. Sort the
environments on a different field with
and define
the field to sort by.
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3metadata:
4 name: example-composition
5spec:
6 environment:
7 environmentConfigs:
8 - type: Selector
9 selector:
10 mode: Multiple
11 maxMatch: 4
12 sortByFieldPath: metadata.annotations[sort.by/weight]
13 matchLabels:
14 - key: my-label-key
15 type: Value
16 value: my-label-value
17 - key: my-label-key
18 type: FromCompositeFieldPath
19 valueFromFieldPath: spec.parameters.deploy
The environments selected by
are then merged
into any other environments listed in the
.
Optional selector labels
By default, Crossplane issues an error if a
field doesn’t exist in the composite resource.
Add
as
to ignore a field if it doesn’t exist.
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3metadata:
4 name: example-composition
5spec:
6 environment:
7 environmentConfigs:
8 - type: Selector
9 selector:
10 matchLabels:
11 - key: my-first-label-key
12 type: Value
13 value: my-first-label-value
14 - key: my-second-label-key
15 type: FromCompositeFieldPath
16 valueFromFieldPath: spec.parameters.deploy
17 fromFieldPathPolicy: Optional
18 resources:
19 # Removed for brevity
Set a default value for an optional label by setting the default
for the
first, then
define the
label.
For example, this Composition defines
for the key
.
If the label
exists, Crossplane uses the value from the label instead.
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3metadata:
4 name: example-composition
5spec:
6 environment:
7 environmentConfigs:
8 - type: Selector
9 selector:
10 matchLabels:
11 - key: my-first-label-key
12 type: Value
13 value: my-label-value
14 - key: my-second-label-key
15 type: Value
16 value: my-default-value
17 - key: my-second-label-key
18 type: FromCompositeFieldPath
19 valueFromFieldPath: spec.parameters.deploy
20 fromFieldPathPolicy: Optional
21 resources:
22 # Removed for brevity
Crossplane applies values in order. The value of the last key defined always takes precedence.
Defining the default value after the label always overwrites the label value.
Patching with EnvironmentConfigs
When Crossplane creates or updates a composite resource, Crossplane merges all the specified EnvironmentConfigs into an in-memory environment.
The composite resource can read or write data between the EnvironmentConfig and composite resource or between the EnvironmentConfig and individual resources defined inside the composite resource.
Patch a composite resource
To patch the composite resource use
inside of the
.
Use the
to copy
data from the in-memory environment to the composite resource.
Use the
to copy
data from the composite resource to the in-memory environment.
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3# Removed for Brevity
4spec:
5 environment:
6 # Removed for Brevity
7 patches:
8 - type: ToCompositeFieldPath
9 fromFieldPath: tags
10 toFieldPath: metadata.labels[envTag]
11 - type: FromCompositeFieldPath
12 fromFieldPath: metadata.name
13 toFieldPath: newEnvironmentKey
Individual resources can use any data written to the in-memory environment.
Patch an individual resource
To patch an individual resource, inside the
of the
resource, use
to copy
data from the resource to the in-memory environment.
Use
to copy data to the resource from the in-memory environment.
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3# Removed for Brevity
4spec:
5 environment:
6 # Removed for Brevity
7 resources:
8 # Removed for Brevity
9 - name: vpc
10 base:
11 apiVersion: ec2.aws.upbound.io/v1beta1
12 kind: VPC
13 spec:
14 forProvider:
15 cidrBlock: 172.16.0.0/16
16 patches:
17 - type: ToEnvironmentFieldPath
18 fromFieldPath: status.atProvider.id
19 toFieldPath: vpcId
20 - type: FromEnvironmentFieldPath
21 fromFieldPath: tags
22 toFieldPath: spec.forProvider.tags
The Patch and Transform documentation has more information on patching individual resources.