Composite Resources
This document applies to the Crossplane master
branch and not to the latest release v1.18.
A composite resource represents a set of managed resources as a single Kubernetes object. Crossplane creates composite resources when users access a custom API, defined in the CompositeResourceDefinition.
A Composition defines how to compose the managed resources together.
Crossplane has four core components that users commonly mix up:
- Compositions - A template to define how to create resources.
- Composite Resource Definition
(
XRD
) - A custom API specification. - Composite Resource (
XR
) - This page. Created by using the custom API defined in a Composite Resource Definition. XRs use the Composition template to create new managed resources. - Claims (
XRC
) - Like a Composite Resource, but with namespace scoping.
Creating composite resources
Creating composite resources requires a
Composition and a
CompositeResourceDefinition
(XRD
).
The Composition defines the set of resources to create.
The XRD defines the custom API users call to request the set of resources.
XRDs define the API used to create a composite resource.
For example,
this
creates a custom API endpoint
.
1apiVersion: apiextensions.crossplane.io/v1
2kind: CompositeResourceDefinition
3metadata:
4 name: xmydatabases.example.org
5spec:
6 group: example.org
7 names:
8 kind: xMyDatabase
9 plural: xmydatabases
10 # Removed for brevity
When a user calls the custom API,
,
Crossplane chooses the Composition to use based on the Composition’s
1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3metadata:
4 name: my-composition
5spec:
6 compositeTypeRef:
7 apiVersion: example.org/v1alpha1
8 kind: xMyDatabase
9 # Removed for brevity
The Composition
matches the
XRD
and
.
Crossplane creates the resources defined in the matching Composition and
represents them as a single composite
resource.
1kubectl get composite
2NAME SYNCED READY COMPOSITION AGE
3my-composite-resource True True my-composition 4s
Naming external resources
By default, managed resources created by a composite resource have the name of the composite resource, followed by a random suffix.
For example, a composite resource named “my-composite-resource” creates external resources named “my-composite-resource-fqvkw.”
Resource names can be deterministic by applying an
to the composite
resource.
1apiVersion: example.org/v1alpha1
2kind: xMyDatabase
3metadata:
4 name: my-composite-resource
5 annotations:
6 crossplane.io/external-name: my-custom-name
7# Removed for brevity
Inside the Composition, use a
to apply the external-name to the resources.
The
patch copies the
field from
the composite resource to the
inside the
managed resource.
crossplane.io/external-name
annotation
Crossplane uses the annotation value to name the external resource. 1apiVersion: apiextensions.crossplane.io/v1
2kind: Composition
3metadata:
4 name: my-composition
5spec:
6 mode: Pipeline
7 pipeline:
8 - step: patch-and-transform
9 functionRef:
10 name: function-patch-and-transform
11 input:
12 apiVersion: pt.fn.crossplane.io/v1beta1
13 kind: Resources
14 resources:
15 - name: database
16 base:
17 # Removed for brevity
18 patches:
19 - fromFieldPath: metadata.annotations
20 toFieldPath: metadata.annotations
For more information on using function-patch-and-transform
to patch
resources refer to the
Function Patch and Transform
documentation.
Composition selection
Select a specific Composition for a composite resource to use with
compositeTypeRef
. Read more about the compositeTypeRef
field in the
Enable Composite Resources
section of the Composition documentation.1apiVersion: example.org/v1alpha1
2kind: xMyDatabase
3metadata:
4 name: my-composite-resource
5spec:
6 compositionRef:
7 name: my-other-composition
8 # Removed for brevity
A composite resource can also select a Composition based on labels instead of
the exact name with a
.
Inside the
section
provide one or more Composition labels to match.
1apiVersion: example.org/v1alpha1
2kind: xMyDatabase
3metadata:
4 name: my-composite-resource
5spec:
6 compositionSelector:
7 matchLabels:
8 environment: production
9 # Removed for brevity
Composition revision policy
Crossplane tracks changes to Compositions as Composition revisions .
A composite resource can use
a
to
manually or automatically reference newer Composition revisions.
The default
is
“Automatic.” Composite resources automatically use the latest Composition
revision.
Change the policy to
to prevent composite
resources from automatically upgrading.
1apiVersion: example.org/v1alpha1
2kind: xMyDatabase
3metadata:
4 name: my-composite-resource
5spec:
6 compositionUpdatePolicy: Manual
7 # Removed for brevity
Composition revision selection
Crossplane records changes to Compositions as
Composition revisions.
A composite resource can
select a specific Composition revision.
Use
to
select a specific Composition revision by name.
For example, to select a specific Composition revision use the name of the desired Composition revision.
1apiVersion: example.org/v1alpha1
2kind: xMyDatabase
3metadata:
4 name: my-composite-resource
5spec:
6 compositionUpdatePolicy: Manual
7 compositionRevisionRef:
8 name: my-composition-b5aa1eb
9 # Removed for brevity
A Composite resource can also select Composition revisions based on labels
instead of the exact name with a
.
Inside the
section provide one or more Composition revision labels to match.
1apiVersion: example.org/v1alpha1
2kind: xMyDatabase
3metadata:
4 name: my-composite-resource
5spec:
6 compositionRevisionSelector:
7 matchLabels:
8 channel: dev
9 # Removed for brevity
Manage connection secrets
When a composite resource creates resources, Crossplane provides any connection secrets to the composite resource.
Read more about managing connection secrets in the XRD documentation.
Use
to specify where the composite resource writes their connection secrets to.
For example, this composite resource saves the connection secrets in a
Kubernetes secret object named
in the namespace
.
1apiVersion: example.org/v1alpha1
2kind: xMyDatabase
3metadata:
4 name: my-composite-resource
5spec:
6 writeConnectionSecretToRef:
7 name: my-secret
8 namespace: crossplane-system
9 # Removed for brevity
Composite resources can write connection secrets to an external secret store, like HashiCorp Vault.
Use the
field to save connection
secrets to an external secrets store.
1apiVersion: example.org/v1alpha1
2kind: xMyDatabase
3metadata:
4 name: my-composite-resource
5spec:
6 publishConnectionDetailsTo:
7 name: my-external-secret-store
8 # Removed for brevity
Read the External Secrets Store documentation for more information on using external secret stores.
For more information on connection secrets read the Connection Secrets knowledge base article.
Pausing composite resources
Crossplane supports pausing composite resources. A paused composite resource doesn’t check or make changes on its external resources.
To pause a composite resource apply the
annotation.
1apiVersion: example.org/v1alpha1
2kind: xMyDatabase
3metadata:
4 name: my-composite-resource
5 annotations:
6 crossplane.io/paused: "true"
7spec:
8 # Removed for brevity
Verify composite resources
Use
to view all the composite resources Crossplane created.
1kubectl get composite
2NAME SYNCED READY COMPOSITION AGE
3my-composite-resource True True my-composition 4s
Use kubectl get
for the specific custom API endpoint to view
only those resources.
1kubectl get xMyDatabase.example.org
2NAME SYNCED READY COMPOSITION AGE
3my-composite-resource True True my-composition 12m
Use
to view the linked
,
and unique managed resources created in the
.
1kubectl describe composite my-composite-resource
2Name: my-composite-resource
3API Version: example.org/v1alpha1
4Kind: xMyDatabase
5Spec:
6 Composition Ref:
7 Name: my-composition
8 Composition Revision Ref:
9 Name: my-composition-cf2d3a7
10 Composition Update Policy: Automatic
11 Resource Refs:
12 API Version: s3.aws.upbound.io/v1beta1
13 Kind: Bucket
14 Name: my-composite-resource-fmrks
15 API Version: dynamodb.aws.upbound.io/v1beta1
16 Kind: Table
17 Name: my-composite-resource-wnr9t
18# Removed for brevity
Composite resource conditions
The conditions of composite resources match the conditions of their managed resources.
Read the conditions section of the managed resources documentation for details.
Composite resource labels
Crossplane adds labels to composite resources to show their relationship to other Crossplane components.
Composite label
Crossplane adds the
label
to all composite resources. The label matches the name of the composite.
Crossplane applies the composite label to any managed resource created by a
composite, creating a reference between the managed resource and owning
composite resource.
1kubectl describe xmydatabase.example.org/my-claimed-database-x9rx9
2Name: my-claimed-database2-x9rx9
3Namespace:
4Labels: crossplane.io/composite=my-claimed-database-x9rx9
Claim name label
Crossplane adds the
label to composite resources created from a Claim. The label indicates the name
of the Claim linked to this composite resource.
1kubectl describe xmydatabase.example.org/my-claimed-database-x9rx9
2Name: my-claimed-database2-x9rx9
3Namespace:
4Labels: crossplane.io/claim-name=my-claimed-database
Composite resources created directly, without using a Claim, don’t have a
label.
Claim namespace label
Crossplane adds the
label to composite resources created from a Claim. The label indicates the
namespace of the Claim linked to this composite resource.
1kubectl describe xmydatabase.example.org/my-claimed-database-x9rx9
2Name: my-claimed-database2-x9rx9
3Namespace:
4Labels: crossplane.io/claim-namespace=default
Composite resources created directly, without using a Claim, don’t have a
label.