Skip to content

Commit

Permalink
add Kuadrant/limitador-operator
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Hoß <[email protected]>
  • Loading branch information
sebhoss committed Nov 12, 2023
1 parent 17a8afb commit dad3c46
Show file tree
Hide file tree
Showing 8 changed files with 1,531 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,10 @@ Files: crd-catalog/Kuadrant/authorino-operator/*
Copyright: The Kuadrant/authorino-operator Authors
License: Apache-2.0

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

Files: crd-catalog/kube-logging/logging-operator/*
Copyright: The kube-logging/logging-operator Authors
License: Apache-2.0
Expand Down
7 changes: 7 additions & 0 deletions code-generator/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,13 @@ 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/limitador-operator",
license: APACHE_V2,
urls: &[
"https://github.com/Kuadrant/limitador-operator/blob/main/config/crd/bases/limitador.kuadrant.io_limitadors.yaml",
],
},
UpstreamSource {
project_name: "kube-logging/logging-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.

1 change: 1 addition & 0 deletions kube-custom-resources-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ kyverno_io_v2alpha1 = []
kyverno_io_v2beta1 = []
lambda_services_k8s_aws_v1alpha1 = []
lerentis_uploadfilter24_eu_v1beta4 = []
limitador_kuadrant_io_v1alpha1 = []
litmuschaos_io_v1alpha1 = []
logging_banzaicloud_io_v1alpha1 = []
logging_banzaicloud_io_v1beta1 = []
Expand Down
9 changes: 9 additions & 0 deletions kube-custom-resources-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1607,6 +1607,13 @@ kinds:
- `BitwardenTemplate`
- `RegistryCredential`
## limitador_kuadrant_io_v1alpha1
apiVersion: `limitador.kuadrant.io/v1alpha1`
kinds:
- `Limitador`
## litmuschaos_io_v1alpha1
apiVersion: `litmuschaos.io/v1alpha1`
Expand Down Expand Up @@ -3033,6 +3040,8 @@ pub mod kyverno_io_v2beta1;
pub mod lambda_services_k8s_aws_v1alpha1;
#[cfg(feature = "lerentis_uploadfilter24_eu_v1beta4")]
pub mod lerentis_uploadfilter24_eu_v1beta4;
#[cfg(feature = "limitador_kuadrant_io_v1alpha1")]
pub mod limitador_kuadrant_io_v1alpha1;
#[cfg(feature = "litmuschaos_io_v1alpha1")]
pub mod litmuschaos_io_v1alpha1;
#[cfg(feature = "logging_extensions_banzaicloud_io_v1alpha1")]
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod limitadors;

0 comments on commit dad3c46

Please sign in to comment.