Skip to content

Commit

Permalink
add Kuadrant/kuadrant-operator
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Hoß <[email protected]>
  • Loading branch information
sebhoss committed Feb 11, 2024
1 parent c4e7ea4 commit 3bdba17
Show file tree
Hide file tree
Showing 15 changed files with 4,790 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,10 @@ Files: crd-catalog/Kuadrant/authorino-operator/*
Copyright: The Kuadrant/authorino-operator Authors
License: Apache-2.0

Files: crd-catalog/Kuadrant/kuadrant-operator/*
Copyright: The Kuadrant/kuadrant-operator Authors
License: Apache-2.0

Files: crd-catalog/Kuadrant/limitador-operator/*
Copyright: The Kuadrant/limitador-operator Authors
License: Apache-2.0
Expand Down
9 changes: 9 additions & 0 deletions code-generator/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1347,6 +1347,15 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
"https://github.com/Kuadrant/authorino-operator/blob/main/config/crd/bases/operator.authorino.kuadrant.io_authorinos.yaml",
],
},
UpstreamSource {
project_name: "Kuadrant/kuadrant-operator",
license: APACHE_V2,
urls: &[
"https://github.com/Kuadrant/kuadrant-operator/blob/main/config/crd/bases/kuadrant.io_authpolicies.yaml",
"https://github.com/Kuadrant/kuadrant-operator/blob/main/config/crd/bases/kuadrant.io_kuadrants.yaml",
"https://github.com/Kuadrant/kuadrant-operator/blob/main/config/crd/bases/kuadrant.io_ratelimitpolicies.yaml",
],
},
UpstreamSource {
project_name: "Kuadrant/limitador-operator",
license: APACHE_V2,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--derive=PartialEq

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cannot find type `AuthPolicyRulesAuthenticationWhenAll` in this scope
cannot find type `AuthPolicyRulesAuthenticationWhenAny` in this scope
2,793 changes: 2,793 additions & 0 deletions crd-catalog/Kuadrant/kuadrant-operator/kuadrant.io/v1beta2/authpolicies.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--derive=PartialEq

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions kube-custom-resources-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ keycloak_k8s_reddec_net = []
keycloak_org = []
kibana_k8s_elastic_co = []
kms_services_k8s_aws = []
kuadrant_io = []
kube_green_com = []
kubean_io = []
kubevious_io = []
Expand Down
2 changes: 2 additions & 0 deletions kube-custom-resources-rs/src/kuadrant_io/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pub mod v1beta1;
pub mod v1beta2;
614 changes: 614 additions & 0 deletions kube-custom-resources-rs/src/kuadrant_io/v1beta1/kuadrants.rs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions kube-custom-resources-rs/src/kuadrant_io/v1beta1/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod kuadrants;
1 change: 1 addition & 0 deletions kube-custom-resources-rs/src/kuadrant_io/v1beta2/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod ratelimitpolicies;
282 changes: 282 additions & 0 deletions kube-custom-resources-rs/src/kuadrant_io/v1beta2/ratelimitpolicies.rs

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions kube-custom-resources-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1420,6 +1420,14 @@ apiVersion `kms.services.k8s.aws/v1alpha1`:
- `Grant`
- `Key`
## kuadrant_io
apiVersion `kuadrant.io/v1beta1`:
- `Kuadrant`
apiVersion `kuadrant.io/v1beta2`:
- `RateLimitPolicy`
## kube_green_com
apiVersion `kube-green.com/v1alpha1`:
Expand Down Expand Up @@ -2922,6 +2930,8 @@ pub mod keycloak_org;
pub mod kibana_k8s_elastic_co;
#[cfg(feature = "kms_services_k8s_aws")]
pub mod kms_services_k8s_aws;
#[cfg(feature = "kuadrant_io")]
pub mod kuadrant_io;
#[cfg(feature = "kube_green_com")]
pub mod kube_green_com;
#[cfg(feature = "kubean_io")]
Expand Down

0 comments on commit 3bdba17

Please sign in to comment.