Skip to content

Commit

Permalink
add netobserv/network-observability-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 1c6c397 commit b6ed828
Show file tree
Hide file tree
Showing 13 changed files with 11,018 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,10 @@ Files: crd-catalog/NetApp/trident/*
Copyright: The NetApp/trident Authors
License: Apache-2.0

Files: crd-catalog/netobserv/network-observability-operator/*
Copyright: The netobserv/network-observability-operator Authors
License: Apache-2.0

Files: crd-catalog/nginxinc/kubernetes-ingress/*
Copyright: The nginxinc/kubernetes-ingress 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 @@ -1471,6 +1471,13 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
"https://github.com/NetApp/trident/blob/master/deploy/crds/trident.netapp.io_tridentorchestrators_crd.yaml",
],
},
UpstreamSource {
project_name: "netobserv/network-observability-operator",
license: APACHE_V2,
urls: &[
"https://github.com/netobserv/network-observability-operator/blob/main/config/crd/bases/flows.netobserv.io_flowcollectors.yaml",
],
},
UpstreamSource {
project_name: "nginxinc/kubernetes-ingress",
license: APACHE_V2,
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions kube-custom-resources-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ externaldns_nginx_org_v1 = []
flagger_app_v1beta1 = []
flink_apache_org_v1beta1 = []
flow_volcano_sh_v1alpha1 = []
flows_netobserv_io_v1alpha1 = []
flows_netobserv_io_v1beta1 = []
flows_netobserv_io_v1beta2 = []
flux_framework_org_v1alpha1 = []
gateway_networking_k8s_io_v1 = []
gateway_networking_k8s_io_v1alpha2 = []
Expand Down
1,637 changes: 1,637 additions & 0 deletions kube-custom-resources-rs/src/flows_netobserv_io_v1alpha1/flowcollectors.rs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod flowcollectors;
1,789 changes: 1,789 additions & 0 deletions kube-custom-resources-rs/src/flows_netobserv_io_v1beta1/flowcollectors.rs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod flowcollectors;
2,010 changes: 2,010 additions & 0 deletions kube-custom-resources-rs/src/flows_netobserv_io_v1beta2/flowcollectors.rs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod flowcollectors;
6 changes: 6 additions & 0 deletions kube-custom-resources-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,12 @@ pub mod flagger_app_v1beta1;
pub mod flink_apache_org_v1beta1;
#[cfg(feature = "flow_volcano_sh_v1alpha1")]
pub mod flow_volcano_sh_v1alpha1;
#[cfg(feature = "flows_netobserv_io_v1alpha1")]
pub mod flows_netobserv_io_v1alpha1;
#[cfg(feature = "flows_netobserv_io_v1beta1")]
pub mod flows_netobserv_io_v1beta1;
#[cfg(feature = "flows_netobserv_io_v1beta2")]
pub mod flows_netobserv_io_v1beta2;
#[cfg(feature = "flux_framework_org_v1alpha1")]
pub mod flux_framework_org_v1alpha1;
#[cfg(feature = "gateway_networking_k8s_io_v1")]
Expand Down

0 comments on commit b6ed828

Please sign in to comment.