Skip to content

Commit

Permalink
add datainfrahq/druid-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 4, 2023
1 parent 18fbe67 commit a4f9a57
Show file tree
Hide file tree
Showing 7 changed files with 14,049 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,10 @@ Files: crd-catalog/ctron/hawkbit-operator/*
Copyright: The ctron/hawkbit-operator Authors
License: EPL-2.0

Files: crd-catalog/datainfrahq/druid-operator/*
Copyright: The datainfrahq/druid-operator Authors
License: Apache-2.0

Files: crd-catalog/devfile/registry-operator/*
Copyright: The devfile/registry-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 @@ -575,6 +575,13 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
"https://github.com/ctron/hawkbit-operator/blob/main/crds/hawkbit.crd.yaml",
],
},
UpstreamSource {
project_name: "datainfrahq/druid-operator",
license: APACHE_V2,
urls: &[
"https://github.com/datainfrahq/druid-operator/blob/master/config/crd/bases/druid.apache.org_druids.yaml",
],
},
UpstreamSource {
project_name: "devfile/registry-operator",
license: APACHE_V2,
Expand Down
7,212 changes: 7,212 additions & 0 deletions crd-catalog/datainfrahq/druid-operator/druid.apache.org/v1alpha1/druids.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 @@ -101,6 +101,7 @@ databases_schemahero_io_v1alpha4 = []
devices_kubeedge_io_v1alpha2 = []
digitalis_io_v1 = []
digitalis_io_v1beta1 = []
druid_apache_org_v1alpha1 = []
dynamodb_services_k8s_aws_v1alpha1 = []
ec2_services_k8s_aws_v1alpha1 = []
ecr_services_k8s_aws_v1alpha1 = []
Expand Down
6,822 changes: 6,822 additions & 0 deletions kube-custom-resources-rs/src/druid_apache_org_v1alpha1/druids.rs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod druids;
2 changes: 2 additions & 0 deletions kube-custom-resources-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ pub mod devices_kubeedge_io_v1alpha2;
pub mod digitalis_io_v1;
#[cfg(feature = "digitalis_io_v1beta1")]
pub mod digitalis_io_v1beta1;
#[cfg(feature = "druid_apache_org_v1alpha1")]
pub mod druid_apache_org_v1alpha1;
#[cfg(feature = "dynamodb_services_k8s_aws_v1alpha1")]
pub mod dynamodb_services_k8s_aws_v1alpha1;
#[cfg(feature = "ec2_services_k8s_aws_v1alpha1")]
Expand Down

0 comments on commit a4f9a57

Please sign in to comment.