You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/v2.0-preview/getting-started/introduction.md
+3-160Lines changed: 3 additions & 160 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,8 +44,7 @@ This table provides a summary of Crossplane components and their roles.
44
44
|[Managed Resource]({{<ref "#managed-resources">}}) |`MR`| cluster | A Provider resource created and managed by Crossplane inside the Kubernetes cluster. |
45
45
|[Composition]({{<ref "#compositions">}}) || cluster | A template for creating multiple _managed resources_ at once. |
46
46
|[Composite Resources]({{<ref "#composite-resources" >}}) |`XR`| cluster | Uses a _Composition_ template to create multiple _managed resources_ as a single Kubernetes object. |
47
-
|[CompositeResourceDefinitions]({{<ref "#composite-resource-definitions" >}}) |`XRD`| cluster | Defines the API schema for _Composite Resources_ and _Claims_|
48
-
|[Claims]({{<ref "#claims" >}}) |`XC`| namespace | Like a _Composite Resource_, but namespace scoped. |
47
+
|[CompositeResourceDefinitions]({{<ref "#composite-resource-definitions" >}}) |`XRD`| cluster | Defines the API schema for _Composite Resources_|
49
48
{{< /table >}}
50
49
51
50
## The Crossplane Pod
@@ -208,50 +207,6 @@ every time a user requests this set of resources.
208
207
If a _Composition_ allows a user to define resource settings, users apply them
209
208
in a _Composite Resource_.
210
209
211
-
212
-
<!-- A _Composition_ defines which _Composite Resources_ can use the _Composition_
213
-
template with the _Composition_ `spec.compositeTypeRef` value. This defines the
214
-
{{<hover label="comp" line="7">}}apiVersion{{< /hover >}} and {{<hover
215
-
label="comp" line="8">}}kind{{< /hover >}} of _Composite Resources_ that can use the
216
-
_Composition_.
217
-
218
-
For example, in the _Composition_:
219
-
```yaml {label="comp"}
220
-
apiVersion: apiextensions.crossplane.io/v1
221
-
kind: Composition
222
-
metadata:
223
-
name: test.example.org
224
-
spec:
225
-
compositeTypeRef:
226
-
apiVersion: test.example.org/v1alpha1
227
-
kind: MyComputeResource
228
-
# Removed for brevity
229
-
```
230
-
231
-
A _Composite Resource_ that can use this template must match this
232
-
{{<hover label="comp" line="7">}}apiVersion{{< /hover >}} and {{<hover
233
-
label="comp" line="8">}}kind{{< /hover >}}.
234
-
235
-
```yaml {label="xr"}
236
-
apiVersion: test.example.org/v1alpha1
237
-
kind: MyComputeResource
238
-
metadata:
239
-
name: my-resource
240
-
spec:
241
-
storage: "large"
242
-
```
243
-
244
-
The _Composite Resource_ {{<hover label="xr" line="1">}}apiVersion{{< /hover >}}
245
-
matches the and _Composition_
246
-
{{<hover label="comp" line="7">}}apiVersion{{</hover >}} and the
0 commit comments