Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add spotahome/redis-operator #140

Merged
merged 1 commit into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,10 @@ Files: crd-catalog/superedge/superedge/*
Copyright: The superedge/superedge Authors
License: Apache-2.0

Files: crd-catalog/spotahome/redis-operator/*
Copyright: The spotahome/redis-operator Authors
License: Apache-2.0

Files: crd-catalog/tektoncd/operator/*
Copyright: The tektoncd/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 @@ -2312,6 +2312,13 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
"https://github.com/superedge/superedge/blob/main/pkg/site-manager/crd/site.superedge.io_nodeunits.yaml",
],
},
UpstreamSource {
project_name: "spotahome/redis-operator",
license: APACHE_V2,
urls: &[
"https://github.com/spotahome/redis-operator/blob/master/manifests/databases.spotahome.com_redisfailovers.yaml",
],
},
UpstreamSource {
project_name: "tektoncd/operator",
license: APACHE_V2,
Expand Down

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 @@ -103,6 +103,7 @@ couchbase_com = []
crd_projectcalico_org = []
data_fluid_io = []
databases_schemahero_io = []
databases_spotahome_com = []
dataprotection_kubeblocks_io = []
devices_kubeedge_io = []
dex_gpu_ninja_com = []
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod v1;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod redisfailovers;
8,019 changes: 8,019 additions & 0 deletions kube-custom-resources-rs/src/databases_spotahome_com/v1/redisfailovers.rs

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions kube-custom-resources-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,11 @@ apiVersion `data.fluid.io/v1alpha1`:
apiVersion `databases.schemahero.io/v1alpha4`:
- `Database`

## databases_spotahome_com

apiVersion `databases.spotahome.com/v1`:
- `RedisFailover`

## dataprotection_kubeblocks_io

apiVersion `dataprotection.kubeblocks.io/v1alpha1`:
Expand Down Expand Up @@ -2577,6 +2582,8 @@ pub mod crd_projectcalico_org;
pub mod data_fluid_io;
#[cfg(feature = "databases_schemahero_io")]
pub mod databases_schemahero_io;
#[cfg(feature = "databases_spotahome_com")]
pub mod databases_spotahome_com;
#[cfg(feature = "dataprotection_kubeblocks_io")]
pub mod dataprotection_kubeblocks_io;
#[cfg(feature = "devices_kubeedge_io")]
Expand Down