Skip to content

Commit aac85ef

Browse files
committed
v1.20 docs content
Signed-off-by: Jared Watts <[email protected]>
1 parent f5febf4 commit aac85ef

File tree

64 files changed

+40093
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+40093
-0
lines changed

content/v1.20/api/_index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: API Reference
3+
weight: 400
4+
description: "API details for Crossplane's core types"
5+
cascade:
6+
product: crds
7+
---
8+
9+
The Crossplane API describes the types and parameters for the core Crossplane
10+
components.
11+
12+
For details on the components read the [Concepts]({{<ref "../concepts/">}})
13+
section.

content/v1.20/api/crds/apiextensions.crossplane.io_compositeresourcedefinitions.yaml

Lines changed: 574 additions & 0 deletions
Large diffs are not rendered by default.

content/v1.20/api/crds/apiextensions.crossplane.io_compositionrevisions.yaml

Lines changed: 2268 additions & 0 deletions
Large diffs are not rendered by default.

content/v1.20/api/crds/apiextensions.crossplane.io_compositions.yaml

Lines changed: 1075 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
---
2+
apiVersion: apiextensions.k8s.io/v1
3+
kind: CustomResourceDefinition
4+
metadata:
5+
annotations:
6+
controller-gen.kubebuilder.io/version: v0.16.5
7+
name: environmentconfigs.apiextensions.crossplane.io
8+
spec:
9+
group: apiextensions.crossplane.io
10+
names:
11+
categories:
12+
- crossplane
13+
kind: EnvironmentConfig
14+
listKind: EnvironmentConfigList
15+
plural: environmentconfigs
16+
shortNames:
17+
- envcfg
18+
singular: environmentconfig
19+
scope: Cluster
20+
versions:
21+
- additionalPrinterColumns:
22+
- jsonPath: .metadata.creationTimestamp
23+
name: AGE
24+
type: date
25+
name: v1alpha1
26+
schema:
27+
openAPIV3Schema:
28+
description: |-
29+
An EnvironmentConfig contains user-defined unstructured values for
30+
use in a Composition.
31+
32+
Read the Crossplane documentation for
33+
[more information about EnvironmentConfigs](https://docs.crossplane.io/latest/concepts/environment-configs).
34+
properties:
35+
apiVersion:
36+
description: |-
37+
APIVersion defines the versioned schema of this representation of an object.
38+
Servers should convert recognized schemas to the latest internal value, and
39+
may reject unrecognized values.
40+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
41+
type: string
42+
data:
43+
additionalProperties:
44+
x-kubernetes-preserve-unknown-fields: true
45+
description: |-
46+
The data of this EnvironmentConfig.
47+
This may contain any kind of structure that can be serialized into JSON.
48+
type: object
49+
kind:
50+
description: |-
51+
Kind is a string value representing the REST resource this object represents.
52+
Servers may infer this from the endpoint the client submits requests to.
53+
Cannot be updated.
54+
In CamelCase.
55+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
56+
type: string
57+
metadata:
58+
type: object
59+
type: object
60+
served: true
61+
storage: false
62+
subresources: {}
63+
- additionalPrinterColumns:
64+
- jsonPath: .metadata.creationTimestamp
65+
name: AGE
66+
type: date
67+
name: v1beta1
68+
schema:
69+
openAPIV3Schema:
70+
description: |-
71+
An EnvironmentConfig contains user-defined unstructured values for
72+
use in a Composition.
73+
74+
Read the Crossplane documentation for
75+
[more information about EnvironmentConfigs](https://docs.crossplane.io/latest/concepts/environment-configs).
76+
properties:
77+
apiVersion:
78+
description: |-
79+
APIVersion defines the versioned schema of this representation of an object.
80+
Servers should convert recognized schemas to the latest internal value, and
81+
may reject unrecognized values.
82+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
83+
type: string
84+
data:
85+
additionalProperties:
86+
x-kubernetes-preserve-unknown-fields: true
87+
description: |-
88+
The data of this EnvironmentConfig.
89+
This may contain any kind of structure that can be serialized into JSON.
90+
type: object
91+
kind:
92+
description: |-
93+
Kind is a string value representing the REST resource this object represents.
94+
Servers may infer this from the endpoint the client submits requests to.
95+
Cannot be updated.
96+
In CamelCase.
97+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
98+
type: string
99+
metadata:
100+
type: object
101+
type: object
102+
served: true
103+
storage: true
104+
subresources: {}

0 commit comments

Comments
 (0)