Skip to content

Commit

Permalink
add weaveworks/tf-controller
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 25aaa7f commit 99c1563
Show file tree
Hide file tree
Showing 13 changed files with 12,310 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -839,6 +839,10 @@ Files: crd-catalog/volcano-sh/volcano/*
Copyright: The volcano-sh/volcano Authors
License: Apache-2.0

Files: crd-catalog/weaveworks/tf-controller/*
Copyright: The weaveworks/tf-controller Authors
License: MPL-2.0

Files: crd-catalog/wildfly/wildfly-operator/*
Copyright: The wildfly/wildfly-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 @@ -2246,6 +2246,13 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
"https://github.com/volcano-sh/volcano/blob/master/config/crd/jobflow/bases/flow.volcano.sh_jobtemplates.yaml",
],
},
UpstreamSource {
project_name: "weaveworks/tf-controller",
license: MPL_V2,
urls: &[
"https://github.com/weaveworks/tf-controller/blob/main/config/crd/bases/infra.contrib.fluxcd.io_terraforms.yaml",
],
},
UpstreamSource {
project_name: "wildfly/wildfly-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 @@
--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 @@ -146,6 +146,7 @@ imageregistry_operator_openshift_io = []
imaging_ingestion_alvearie_org = []
inference_kubedl_io = []
infinispan_org = []
infra_contrib_fluxcd_io = []
infrastructure_cluster_x_k8s_io = []
ingress_operator_openshift_io = []
insights_openshift_io = []
Expand Down
2 changes: 2 additions & 0 deletions kube-custom-resources-rs/src/infra_contrib_fluxcd_io/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pub mod v1alpha1;
pub mod v1alpha2;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod terraforms;
2,926 changes: 2,926 additions & 0 deletions kube-custom-resources-rs/src/infra_contrib_fluxcd_io/v1alpha1/terraforms.rs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod terraforms;
3,094 changes: 3,094 additions & 0 deletions kube-custom-resources-rs/src/infra_contrib_fluxcd_io/v1alpha2/terraforms.rs

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions kube-custom-resources-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1240,6 +1240,16 @@ Every group has its own feature in this crate. The available features are as fol
- `Cache`
- `Restore`
## infra_contrib_fluxcd_io
- apiVersion: `infra.contrib.fluxcd.io/v1alpha1`
- kinds:
- `Terraform`
- apiVersion: `infra.contrib.fluxcd.io/v1alpha2`
- kinds:
- `Terraform`
## infrastructure_cluster_x_k8s_io
- apiVersion: `infrastructure.cluster.x-k8s.io/v1alpha1`
Expand Down Expand Up @@ -2856,6 +2866,8 @@ pub mod imaging_ingestion_alvearie_org;
pub mod inference_kubedl_io;
#[cfg(feature = "infinispan_org")]
pub mod infinispan_org;
#[cfg(feature = "infra_contrib_fluxcd_io")]
pub mod infra_contrib_fluxcd_io;
#[cfg(feature = "infrastructure_cluster_x_k8s_io")]
pub mod infrastructure_cluster_x_k8s_io;
#[cfg(feature = "ingress_operator_openshift_io")]
Expand Down

0 comments on commit 99c1563

Please sign in to comment.