Skip to content

Commit 1594ef4

Browse files
Update Helm release crossplane to v2.1.0
1 parent cd2969a commit 1594ef4

File tree

5 files changed

+303
-3
lines changed

5 files changed

+303
-3
lines changed

charts/charts.k

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ charts: helm.Charts = {
328328
crossplane: {
329329
chart = "crossplane"
330330
repoURL = "https://charts.crossplane.io/stable"
331-
targetRevision = "2.0.2"
331+
targetRevision = "2.1.0"
332332
schemaGenerator = "AUTO"
333333
crdGenerator = "PATH"
334334
crdPaths = [
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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+
6+
import k8s.apimachinery.pkg.apis.meta.v1
7+
8+
schema Configuration:
9+
r"""
10+
A Configuration is the description of a Crossplane Configuration package.
11+
12+
Attributes
13+
----------
14+
apiVersion : str, default is "meta.pkg.crossplane.io/v1", 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 "Configuration", 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 : MetaPkgCrossplaneIoV1ConfigurationSpec, default is Undefined, required
21+
spec
22+
"""
23+
apiVersion: "meta.pkg.crossplane.io/v1" = "meta.pkg.crossplane.io/v1"
24+
25+
kind: "Configuration" = "Configuration"
26+
27+
metadata?: v1.ObjectMeta
28+
spec: MetaPkgCrossplaneIoV1ConfigurationSpec
29+
30+
schema MetaPkgCrossplaneIoV1ConfigurationSpec:
31+
r"""
32+
ConfigurationSpec specifies the configuration of a Configuration.
33+
34+
Attributes
35+
----------
36+
capabilities : [str], default is Undefined, optional
37+
Capabilities of this package. Capabilities are opaque strings that
38+
may be meaningful to package consumers.
39+
crossplane : MetaPkgCrossplaneIoV1ConfigurationSpecCrossplane, default is Undefined, optional
40+
crossplane
41+
dependsOn : [MetaPkgCrossplaneIoV1ConfigurationSpecDependsOnItems0], default is Undefined, optional
42+
Dependencies on other packages.
43+
"""
44+
capabilities?: [str]
45+
crossplane?: MetaPkgCrossplaneIoV1ConfigurationSpecCrossplane
46+
dependsOn?: [MetaPkgCrossplaneIoV1ConfigurationSpecDependsOnItems0]
47+
48+
schema MetaPkgCrossplaneIoV1ConfigurationSpecCrossplane:
49+
r"""
50+
Semantic version constraints of Crossplane that package is compatible with.
51+
52+
Attributes
53+
----------
54+
version : str, default is Undefined, required
55+
Semantic version constraints of Crossplane that package is compatible with.
56+
"""
57+
version: str
58+
59+
schema MetaPkgCrossplaneIoV1ConfigurationSpecDependsOnItems0:
60+
r"""
61+
Dependency is a dependency on another package. A dependency can be of an
62+
arbitrary API version and kind, but Crossplane expects package dependencies
63+
to behave like a Crossplane package. Specifically it expects to be able to
64+
create the dependency and set its spec.package field to a package OCI
65+
reference.
66+
67+
Attributes
68+
----------
69+
apiVersion : str, default is Undefined, optional
70+
APIVersion of the dependency.
71+
configuration : str, default is Undefined, optional
72+
Configuration is the name of a Configuration package image.
73+
Must be a fully qualified image name, including the registry,
74+
Deprecated: Specify an apiVersion, kind, and package instead.
75+
function : str, default is Undefined, optional
76+
Function is the name of a Function package image.
77+
Must be a fully qualified image name, including the registry,
78+
Deprecated: Specify an apiVersion, kind, and package instead.
79+
kind : str, default is Undefined, optional
80+
Kind of the dependency.
81+
package : str, default is Undefined, optional
82+
Package OCI reference of the dependency. Only used when apiVersion and
83+
kind are set.
84+
Must be a fully qualified image name, including the registry,
85+
repository, and tag. For example, "registry.example.com/repo/package:tag".
86+
provider : str, default is Undefined, optional
87+
Provider is the name of a Provider package image.
88+
Must be a fully qualified image name, including the registry,
89+
Deprecated: Specify an apiVersion and kind instead.
90+
version : str, default is Undefined, required
91+
Version is the semantic version constraints of the dependency image.
92+
"""
93+
apiVersion?: str
94+
configuration?: str
95+
function?: str
96+
kind?: str
97+
package?: str
98+
provider?: str
99+
version: str
100+
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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+
6+
import k8s.apimachinery.pkg.apis.meta.v1
7+
8+
schema Function:
9+
r"""
10+
A Function is the description of a Crossplane Function package.
11+
12+
Attributes
13+
----------
14+
apiVersion : str, default is "meta.pkg.crossplane.io/v1", 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 "Function", 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 : MetaPkgCrossplaneIoV1FunctionSpec, default is Undefined, required
21+
spec
22+
"""
23+
apiVersion: "meta.pkg.crossplane.io/v1" = "meta.pkg.crossplane.io/v1"
24+
25+
kind: "Function" = "Function"
26+
27+
metadata?: v1.ObjectMeta
28+
spec: MetaPkgCrossplaneIoV1FunctionSpec
29+
30+
schema MetaPkgCrossplaneIoV1FunctionSpec:
31+
r"""
32+
FunctionSpec specifies the configuration of a Function.
33+
34+
Attributes
35+
----------
36+
capabilities : [str], default is Undefined, optional
37+
Capabilities of this package. Capabilities are opaque strings that
38+
may be meaningful to package consumers.
39+
crossplane : MetaPkgCrossplaneIoV1FunctionSpecCrossplane, default is Undefined, optional
40+
crossplane
41+
dependsOn : [MetaPkgCrossplaneIoV1FunctionSpecDependsOnItems0], default is Undefined, optional
42+
Dependencies on other packages.
43+
"""
44+
capabilities?: [str]
45+
crossplane?: MetaPkgCrossplaneIoV1FunctionSpecCrossplane
46+
dependsOn?: [MetaPkgCrossplaneIoV1FunctionSpecDependsOnItems0]
47+
48+
schema MetaPkgCrossplaneIoV1FunctionSpecCrossplane:
49+
r"""
50+
Semantic version constraints of Crossplane that package is compatible with.
51+
52+
Attributes
53+
----------
54+
version : str, default is Undefined, required
55+
Semantic version constraints of Crossplane that package is compatible with.
56+
"""
57+
version: str
58+
59+
schema MetaPkgCrossplaneIoV1FunctionSpecDependsOnItems0:
60+
r"""
61+
Dependency is a dependency on another package. A dependency can be of an
62+
arbitrary API version and kind, but Crossplane expects package dependencies
63+
to behave like a Crossplane package. Specifically it expects to be able to
64+
create the dependency and set its spec.package field to a package OCI
65+
reference.
66+
67+
Attributes
68+
----------
69+
apiVersion : str, default is Undefined, optional
70+
APIVersion of the dependency.
71+
configuration : str, default is Undefined, optional
72+
Configuration is the name of a Configuration package image.
73+
Must be a fully qualified image name, including the registry,
74+
Deprecated: Specify an apiVersion, kind, and package instead.
75+
function : str, default is Undefined, optional
76+
Function is the name of a Function package image.
77+
Must be a fully qualified image name, including the registry,
78+
Deprecated: Specify an apiVersion, kind, and package instead.
79+
kind : str, default is Undefined, optional
80+
Kind of the dependency.
81+
package : str, default is Undefined, optional
82+
Package OCI reference of the dependency. Only used when apiVersion and
83+
kind are set.
84+
Must be a fully qualified image name, including the registry,
85+
repository, and tag. For example, "registry.example.com/repo/package:tag".
86+
provider : str, default is Undefined, optional
87+
Provider is the name of a Provider package image.
88+
Must be a fully qualified image name, including the registry,
89+
Deprecated: Specify an apiVersion and kind instead.
90+
version : str, default is Undefined, required
91+
Version is the semantic version constraints of the dependency image.
92+
"""
93+
apiVersion?: str
94+
configuration?: str
95+
function?: str
96+
kind?: str
97+
package?: str
98+
provider?: str
99+
version: str
100+
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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+
6+
import k8s.apimachinery.pkg.apis.meta.v1
7+
8+
schema Provider:
9+
r"""
10+
A Provider is the description of a Crossplane Provider package.
11+
12+
Attributes
13+
----------
14+
apiVersion : str, default is "meta.pkg.crossplane.io/v1", 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 "Provider", 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 : MetaPkgCrossplaneIoV1ProviderSpec, default is Undefined, required
21+
spec
22+
"""
23+
apiVersion: "meta.pkg.crossplane.io/v1" = "meta.pkg.crossplane.io/v1"
24+
25+
kind: "Provider" = "Provider"
26+
27+
metadata?: v1.ObjectMeta
28+
spec: MetaPkgCrossplaneIoV1ProviderSpec
29+
30+
schema MetaPkgCrossplaneIoV1ProviderSpec:
31+
r"""
32+
ProviderSpec specifies the configuration of a Provider.
33+
34+
Attributes
35+
----------
36+
capabilities : [str], default is Undefined, optional
37+
Capabilities of this package. Capabilities are opaque strings that
38+
may be meaningful to package consumers.
39+
crossplane : MetaPkgCrossplaneIoV1ProviderSpecCrossplane, default is Undefined, optional
40+
crossplane
41+
dependsOn : [MetaPkgCrossplaneIoV1ProviderSpecDependsOnItems0], default is Undefined, optional
42+
Dependencies on other packages.
43+
"""
44+
capabilities?: [str]
45+
crossplane?: MetaPkgCrossplaneIoV1ProviderSpecCrossplane
46+
dependsOn?: [MetaPkgCrossplaneIoV1ProviderSpecDependsOnItems0]
47+
48+
schema MetaPkgCrossplaneIoV1ProviderSpecCrossplane:
49+
r"""
50+
Semantic version constraints of Crossplane that package is compatible with.
51+
52+
Attributes
53+
----------
54+
version : str, default is Undefined, required
55+
Semantic version constraints of Crossplane that package is compatible with.
56+
"""
57+
version: str
58+
59+
schema MetaPkgCrossplaneIoV1ProviderSpecDependsOnItems0:
60+
r"""
61+
Dependency is a dependency on another package. A dependency can be of an
62+
arbitrary API version and kind, but Crossplane expects package dependencies
63+
to behave like a Crossplane package. Specifically it expects to be able to
64+
create the dependency and set its spec.package field to a package OCI
65+
reference.
66+
67+
Attributes
68+
----------
69+
apiVersion : str, default is Undefined, optional
70+
APIVersion of the dependency.
71+
configuration : str, default is Undefined, optional
72+
Configuration is the name of a Configuration package image.
73+
Must be a fully qualified image name, including the registry,
74+
Deprecated: Specify an apiVersion, kind, and package instead.
75+
function : str, default is Undefined, optional
76+
Function is the name of a Function package image.
77+
Must be a fully qualified image name, including the registry,
78+
Deprecated: Specify an apiVersion, kind, and package instead.
79+
kind : str, default is Undefined, optional
80+
Kind of the dependency.
81+
package : str, default is Undefined, optional
82+
Package OCI reference of the dependency. Only used when apiVersion and
83+
kind are set.
84+
Must be a fully qualified image name, including the registry,
85+
repository, and tag. For example, "registry.example.com/repo/package:tag".
86+
provider : str, default is Undefined, optional
87+
Provider is the name of a Provider package image.
88+
Must be a fully qualified image name, including the registry,
89+
Deprecated: Specify an apiVersion and kind instead.
90+
version : str, default is Undefined, required
91+
Version is the semantic version constraints of the dependency image.
92+
"""
93+
apiVersion?: str
94+
configuration?: str
95+
function?: str
96+
kind?: str
97+
package?: str
98+
provider?: str
99+
version: str
100+

charts/crossplane/chart.k

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ schema Chart(helm.Chart):
1414
values : Values | any, optional
1515
chart : str, required, default is "crossplane"
1616
repoURL : str, required, default is "https://charts.crossplane.io/stable"
17-
targetRevision : str, optional, default is "2.0.2"
17+
targetRevision : str, optional, default is "2.1.0"
1818
"""
1919
values?: Values | any
2020
chart: str = "crossplane"
2121
repoURL: str = "https://charts.crossplane.io/stable"
22-
targetRevision?: str = "2.0.2"
22+
targetRevision?: str = "2.1.0"
2323

0 commit comments

Comments
 (0)