Skip to content

Commit

Permalink
add berops/claudie
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Hoß <[email protected]>
  • Loading branch information
sebhoss committed Nov 26, 2023
1 parent b27b7b7 commit 0736176
Show file tree
Hide file tree
Showing 9 changed files with 756 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ Files: crd-catalog/backube/snapscheduler/*
Copyright: The backube/snapscheduler Authors
License: AGPL-3.0-or-later

Files: crd-catalog/berops/claudie/*
Copyright: The berops/claudie Authors
License: Apache-2.0

Files: crd-catalog/bitnami-labs/sealed-secrets/*
Copyright: The bitnami-labs/sealed-secrets 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 @@ -456,6 +456,13 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
"https://github.com/backube/snapscheduler/blob/master/config/crd/bases/snapscheduler.backube_snapshotschedules.yaml",
],
},
UpstreamSource {
project_name: "berops/claudie",
license: APACHE_V2,
urls: &[
"https://github.com/berops/claudie/blob/master/manifests/claudie/crd/claudie.io_inputmanifests.yaml",
],
},
UpstreamSource {
project_name: "bitnami-labs/sealed-secrets",
license: APACHE_V2,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--derive=PartialEq
393 changes: 393 additions & 0 deletions crd-catalog/berops/claudie/claudie.io/v1beta1/inputmanifests.yaml

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 @@ -78,6 +78,7 @@ chaos_mesh_org = []
chaosblade_io = []
che_eclipse_org = []
cilium_io = []
claudie_io = []
cloud_network_openshift_io = []
cloudformation_linki_space = []
cluster_clusterpedia_io = []
Expand Down
1 change: 1 addition & 0 deletions kube-custom-resources-rs/src/claudie_io/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod v1beta1;
340 changes: 340 additions & 0 deletions kube-custom-resources-rs/src/claudie_io/v1beta1/inputmanifests.rs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions kube-custom-resources-rs/src/claudie_io/v1beta1/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod inputmanifests;
8 changes: 8 additions & 0 deletions kube-custom-resources-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,12 @@ Every group has its own feature in this crate. The available features are as fol
- `CiliumNodeConfig`
- `CiliumPodIPPool`
## claudie_io
- apiVersion: `claudie.io/v1beta1`
- kinds:
- `InputManifest`
## cloud_network_openshift_io
- apiVersion: `cloud.network.openshift.io/v1`
Expand Down Expand Up @@ -2708,6 +2714,8 @@ pub mod chaosblade_io;
pub mod che_eclipse_org;
#[cfg(feature = "cilium_io")]
pub mod cilium_io;
#[cfg(feature = "claudie_io")]
pub mod claudie_io;
#[cfg(feature = "cloud_network_openshift_io")]
pub mod cloud_network_openshift_io;
#[cfg(feature = "cloudformation_linki_space")]
Expand Down

0 comments on commit 0736176

Please sign in to comment.