Skip to content

Commit d31dc0a

Browse files
committed
Update to 2.0.6 defintions, both of crds and of protobuf.
Signed-off-by: Knut-Erik Johnsen <[email protected]>
1 parent 24d17f6 commit d31dc0a

11 files changed

+1538
-3062
lines changed

crossplane-crd-model/src/main/resources/kubernetes/apiextensions.crossplane.io_compositeresourcedefinitions.yaml

Lines changed: 622 additions & 4 deletions
Large diffs are not rendered by default.

crossplane-crd-model/src/main/resources/kubernetes/apiextensions.crossplane.io_compositionrevisions.yaml

Lines changed: 58 additions & 2017 deletions
Large diffs are not rendered by default.

crossplane-crd-model/src/main/resources/kubernetes/apiextensions.crossplane.io_compositions.yaml

Lines changed: 72 additions & 901 deletions
Large diffs are not rendered by default.

crossplane-crd-model/src/main/resources/kubernetes/apiextensions.crossplane.io_environmentconfigs.yaml

Lines changed: 1 addition & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.5
6+
controller-gen.kubebuilder.io/version: v0.18.0
77
name: environmentconfigs.apiextensions.crossplane.io
88
spec:
99
group: apiextensions.crossplane.io
@@ -18,48 +18,6 @@ spec:
1818
singular: environmentconfig
1919
scope: Cluster
2020
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: {}
6321
- additionalPrinterColumns:
6422
- jsonPath: .metadata.creationTimestamp
6523
name: AGE
Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
---
2+
apiVersion: apiextensions.k8s.io/v1
3+
kind: CustomResourceDefinition
4+
metadata:
5+
annotations:
6+
controller-gen.kubebuilder.io/version: v0.18.0
7+
name: managedresourceactivationpolicies.apiextensions.crossplane.io
8+
spec:
9+
group: apiextensions.crossplane.io
10+
names:
11+
categories:
12+
- crossplane
13+
kind: ManagedResourceActivationPolicy
14+
listKind: ManagedResourceActivationPolicyList
15+
plural: managedresourceactivationpolicies
16+
shortNames:
17+
- mrap
18+
singular: managedresourceactivationpolicy
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: A ManagedResourceActivationPolicy defines the activation policy
29+
for ManagedResourceDefinitions.
30+
properties:
31+
apiVersion:
32+
description: |-
33+
APIVersion defines the versioned schema of this representation of an object.
34+
Servers should convert recognized schemas to the latest internal value, and
35+
may reject unrecognized values.
36+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
37+
type: string
38+
kind:
39+
description: |-
40+
Kind is a string value representing the REST resource this object represents.
41+
Servers may infer this from the endpoint the client submits requests to.
42+
Cannot be updated.
43+
In CamelCase.
44+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
45+
type: string
46+
metadata:
47+
type: object
48+
spec:
49+
description: ManagedResourceActivationPolicySpec specifies the desired
50+
activation state of ManagedResourceDefinitions.
51+
properties:
52+
activate:
53+
description: |-
54+
Activations is an array of MRD names to activate. Supports wildcard
55+
prefixes (like `*.aws.crossplane.io`) but not full regular expressions.
56+
items:
57+
description: ActivationPolicy matches on MRD names with wildcard
58+
prefix support.
59+
type: string
60+
minItems: 1
61+
type: array
62+
required:
63+
- activate
64+
type: object
65+
status:
66+
description: ManagedResourceActivationPolicyStatus shows the observed
67+
state of the policy.
68+
properties:
69+
activated:
70+
description: Activated names the ManagedResourceDefinitions this policy
71+
has activated.
72+
items:
73+
type: string
74+
type: array
75+
conditions:
76+
description: Conditions of the resource.
77+
items:
78+
description: A Condition that may apply to a resource.
79+
properties:
80+
lastTransitionTime:
81+
description: |-
82+
LastTransitionTime is the last time this condition transitioned from one
83+
status to another.
84+
format: date-time
85+
type: string
86+
message:
87+
description: |-
88+
A Message containing details about this condition's last transition from
89+
one status to another, if any.
90+
type: string
91+
observedGeneration:
92+
description: |-
93+
ObservedGeneration represents the .metadata.generation that the condition was set based upon.
94+
For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date
95+
with respect to the current state of the instance.
96+
format: int64
97+
type: integer
98+
reason:
99+
description: A Reason for this condition's last transition from
100+
one status to another.
101+
type: string
102+
status:
103+
description: Status of this condition; is it currently True,
104+
False, or Unknown?
105+
type: string
106+
type:
107+
description: |-
108+
Type of this condition. At most one of each condition type may apply to
109+
a resource at any point in time.
110+
type: string
111+
required:
112+
- lastTransitionTime
113+
- reason
114+
- status
115+
- type
116+
type: object
117+
type: array
118+
x-kubernetes-list-map-keys:
119+
- type
120+
x-kubernetes-list-type: map
121+
type: object
122+
type: object
123+
served: true
124+
storage: true
125+
subresources:
126+
status: {}

0 commit comments

Comments
 (0)