Skip to content

Commit 1b3dbc1

Browse files
committed
fix: package metadata
Signed-off-by: Sergey Ryabin <[email protected]>
1 parent 0e5702e commit 1b3dbc1

File tree

83 files changed

+104844
-3
lines changed

Some content is hidden

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

83 files changed

+104844
-3
lines changed

knative-operator/kcl.mod

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[package]
2-
name = "operator"
3-
version = "1.17.2"
2+
name = "knative-operator"
3+
version = "0.3.0"
4+
edition = "*"
5+
description = "KCL module for the Knative Operator"
46

57
[dependencies]
68
k8s = "1.31.2"

knative/kcl.mod

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[package]
22
name = "knative"
3-
version = "1.17.0"
3+
version = "0.2.0"
4+
edition = "*"
5+
description = "KCL module for Knative Serving and Eventing"
46

57
[dependencies]
68
k8s = "1.31.2"

scripts/_operator/README.md

+2,676
Large diffs are not rendered by default.

scripts/_operator/crds/operator.knative.dev_knativeeventings.yaml

+2,385
Large diffs are not rendered by default.

scripts/_operator/crds/operator.knative.dev_knativeservings.yaml

+2,514
Large diffs are not rendered by default.

scripts/_operator/kcl.mod

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[package]
2+
name = "knative-operator"
3+
edition = "v0.0.1"
4+
version = "0.2.2"
5+
6+
[dependencies]
7+
k8s = "1.31.2"

scripts/_operator/kcl.mod.lock

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[dependencies]
2+
[dependencies.k8s]
3+
name = "k8s"
4+
full_name = "k8s_1.31.2"
5+
version = "1.31.2"

scripts/_operator/v1beta1/operator_knative_dev_v1beta1_knative_eventing.k

+2,425
Large diffs are not rendered by default.

scripts/_operator/v1beta1/operator_knative_dev_v1beta1_knative_serving.k

+2,621
Large diffs are not rendered by default.

scripts/crossplane/README.md

+8,772
Large diffs are not rendered by default.

scripts/crossplane/crds/crossplane.yaml

+10,534
Large diffs are not rendered by default.

scripts/crossplane/kcl.mod

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[package]
2+
name = "crossplane"
3+
edition = "v0.10.0"
4+
version = "v0.10.0"
5+
6+
[dependencies]
7+
k8s = "1.31.2"

scripts/crossplane/kcl.mod.lock

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[dependencies]
2+
[dependencies.k8s]
3+
name = "k8s"
4+
full_name = "k8s_1.31.2"
5+
version = "1.31.2"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,241 @@
1+
"""
2+
This file was generated by the KCL auto-gen tool. DO NOT EDIT.
3+
Editing this file might prove futile when you re-run the KCL auto-gen generate command.
4+
"""
5+
import k8s.apimachinery.pkg.apis.meta.v1
6+
7+
8+
schema Composition:
9+
r"""
10+
Composition defines the group of resources to be created when a compatible type is created with reference to the composition.
11+
12+
Attributes
13+
----------
14+
apiVersion : str, default is "apiextensions.crossplane.io/v1alpha1", required
15+
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
16+
kind : str, default is "Composition", required
17+
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
18+
metadata : v1.ObjectMeta, default is Undefined, optional
19+
metadata
20+
spec : ApiextensionsCrossplaneIoV1alpha1CompositionSpec, default is Undefined, optional
21+
spec
22+
status : ApiextensionsCrossplaneIoV1alpha1CompositionStatus, default is Undefined, optional
23+
status
24+
"""
25+
26+
27+
apiVersion: "apiextensions.crossplane.io/v1alpha1" = "apiextensions.crossplane.io/v1alpha1"
28+
29+
kind: "Composition" = "Composition"
30+
31+
metadata?: v1.ObjectMeta
32+
33+
spec?: ApiextensionsCrossplaneIoV1alpha1CompositionSpec
34+
35+
status?: ApiextensionsCrossplaneIoV1alpha1CompositionStatus
36+
37+
38+
schema ApiextensionsCrossplaneIoV1alpha1CompositionSpec:
39+
r"""
40+
CompositionSpec specifies the desired state of the definition.
41+
42+
Attributes
43+
----------
44+
from : ApiextensionsCrossplaneIoV1alpha1CompositionSpecFrom, default is Undefined, required
45+
from
46+
reclaimPolicy : str, default is Undefined, optional
47+
ReclaimPolicy specifies what will happen to composite resource dynamically provisioned using this composition when their namespaced referrer is deleted. The "Delete" policy causes the composite resource to be deleted when its namespaced referrer is deleted. The "Retain" policy causes the composite resource to be retained, in binding phase "Released", when its namespaced referrer is deleted. The "Retain" policy is used when no policy is specified, however the "Delete" policy is set at dynamic provisioning time if no policy is set.
48+
to : [ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0], default is Undefined, required
49+
To is the list of target resources that make up the composition.
50+
writeConnectionSecretsToNamespace : str, default is Undefined, required
51+
WriteConnectionSecretsToNamespace specifies the namespace in which the connection secrets of composite resource dynamically provisioned using this composition will be created.
52+
"""
53+
54+
55+
from: ApiextensionsCrossplaneIoV1alpha1CompositionSpecFrom
56+
57+
reclaimPolicy?: "Retain" | "Delete"
58+
59+
to: [ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0]
60+
61+
writeConnectionSecretsToNamespace: str
62+
63+
64+
schema ApiextensionsCrossplaneIoV1alpha1CompositionSpecFrom:
65+
r"""
66+
From refers to the type that this composition is compatible. The values for the underlying resources will be fetched from the instances of the From.
67+
68+
Attributes
69+
----------
70+
apiVersion : str, default is Undefined, required
71+
APIVersion of the type.
72+
kind : str, default is Undefined, required
73+
Kind of the type.
74+
"""
75+
76+
77+
apiVersion: str
78+
79+
kind: str
80+
81+
82+
schema ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0:
83+
r"""
84+
ComposedTemplate is used to provide information about how the composed resource should be processed.
85+
86+
Attributes
87+
----------
88+
base : any, default is Undefined, required
89+
Base is the target resource that the patches will be applied on.
90+
connectionDetails : [ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0ConnectionDetailsItems0], default is Undefined, optional
91+
ConnectionDetails lists the propagation secret keys from this target resource to the composition instance connection secret.
92+
patches : [ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0], default is Undefined, optional
93+
Patches will be applied as overlay to the base resource.
94+
"""
95+
96+
97+
base: any
98+
99+
connectionDetails?: [ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0ConnectionDetailsItems0]
100+
101+
patches?: [ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0]
102+
103+
104+
schema ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0ConnectionDetailsItems0:
105+
r"""
106+
ConnectionDetail includes the information about the propagation of the connection information from one secret to another.
107+
108+
Attributes
109+
----------
110+
fromConnectionSecretKey : str, default is Undefined, required
111+
FromConnectionSecretKey is the key that will be used to fetch the value from the given target resource.
112+
name : str, default is Undefined, optional
113+
Name of the connection secret key that will be propagated to the connection secret of the composition instance. Leave empty if you'd like to use the same key name.
114+
"""
115+
116+
117+
fromConnectionSecretKey: str
118+
119+
name?: str
120+
121+
122+
schema ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0:
123+
r"""
124+
Patch is used to patch the field on the base resource at ToFieldPath after piping the value that is at FromFieldPath of the target resource through transformers.
125+
126+
Attributes
127+
----------
128+
fromFieldPath : str, default is Undefined, required
129+
FromFieldPath is the path of the field on the upstream resource whose value to be used as input.
130+
toFieldPath : str, default is Undefined, optional
131+
ToFieldPath is the path of the field on the base resource whose value will be changed with the result of transforms. Leave empty if you'd like to propagate to the same path on the target resource.
132+
transforms : [ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0TransformsItems0], default is Undefined, optional
133+
Transforms are the list of functions that are used as a FIFO pipe for the input to be transformed.
134+
"""
135+
136+
137+
fromFieldPath: str
138+
139+
toFieldPath?: str
140+
141+
transforms?: [ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0TransformsItems0]
142+
143+
144+
schema ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0TransformsItems0:
145+
r"""
146+
Transform is a unit of process whose input is transformed into an output with the supplied configuration.
147+
148+
Attributes
149+
----------
150+
$map : {str:str}, default is Undefined, optional
151+
Map uses the input as a key in the given map and returns the value.
152+
math : ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0TransformsItems0Math, default is Undefined, optional
153+
math
154+
string : ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0TransformsItems0String, default is Undefined, optional
155+
string
156+
$type : str, default is Undefined, required
157+
Type of the transform to be run.
158+
"""
159+
160+
161+
$map?: {str:str}
162+
163+
math?: ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0TransformsItems0Math
164+
165+
string?: ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0TransformsItems0String
166+
167+
$type: str
168+
169+
170+
schema ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0TransformsItems0Math:
171+
r"""
172+
Math is used to transform the input via mathematical operations such as multiplication.
173+
174+
Attributes
175+
----------
176+
multiply : int, default is Undefined, optional
177+
Multiply the value.
178+
"""
179+
180+
181+
multiply?: int
182+
183+
184+
schema ApiextensionsCrossplaneIoV1alpha1CompositionSpecToItems0PatchesItems0TransformsItems0String:
185+
r"""
186+
String is used to transform the input into a string or a different kind of string. Note that the input does not necessarily need to be a string.
187+
188+
Attributes
189+
----------
190+
fmt : str, default is Undefined, required
191+
Format the input using a Go format string. See https://golang.org/pkg/fmt/ for details.
192+
"""
193+
194+
195+
fmt: str
196+
197+
198+
schema ApiextensionsCrossplaneIoV1alpha1CompositionStatus:
199+
r"""
200+
CompositionStatus shows the observed state of the composition.
201+
202+
Attributes
203+
----------
204+
conditions : [ApiextensionsCrossplaneIoV1alpha1CompositionStatusConditionsItems0], default is Undefined, optional
205+
Conditions of the resource.
206+
"""
207+
208+
209+
conditions?: [ApiextensionsCrossplaneIoV1alpha1CompositionStatusConditionsItems0]
210+
211+
212+
schema ApiextensionsCrossplaneIoV1alpha1CompositionStatusConditionsItems0:
213+
r"""
214+
A Condition that may apply to a resource.
215+
216+
Attributes
217+
----------
218+
lastTransitionTime : str, default is Undefined, required
219+
LastTransitionTime is the last time this condition transitioned from one status to another.
220+
message : str, default is Undefined, optional
221+
A Message containing details about this condition's last transition from one status to another, if any.
222+
reason : str, default is Undefined, required
223+
A Reason for this condition's last transition from one status to another.
224+
status : str, default is Undefined, required
225+
Status of this condition; is it currently True, False, or Unknown?
226+
$type : str, default is Undefined, required
227+
Type of this condition. At most one of each condition type may apply to a resource at any point in time.
228+
"""
229+
230+
231+
lastTransitionTime: str
232+
233+
message?: str
234+
235+
reason: str
236+
237+
status: str
238+
239+
$type: str
240+
241+

0 commit comments

Comments
 (0)