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 percona/percona-server-mysql-operator #147

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 @@ -779,6 +779,10 @@ Files: crd-catalog/otterize/helm-charts/*
Copyright: The otterize/helm-charts Authors
License: Apache-2.0

Files: crd-catalog/percona/percona-server-mysql-operator/*
Copyright: The percona/percona-server-mysql-operator Authors
License: Apache-2.0

Files: crd-catalog/projectcalico/calico/*
Copyright: The projectcalico/calico Authors
License: Apache-2.0
Expand Down
9 changes: 9 additions & 0 deletions code-generator/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2078,6 +2078,15 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
"https://github.com/otterize/helm-charts/blob/main/intents-operator/crds/protectedservices-customresourcedefinition.yaml",
],
},
UpstreamSource {
project_name: "percona/percona-server-mysql-operator",
license: APACHE_V2,
urls: &[
"https://github.com/percona/percona-server-mysql-operator/blob/main/config/crd/bases/ps.percona.com_perconaservermysqlbackups.yaml",
"https://github.com/percona/percona-server-mysql-operator/blob/main/config/crd/bases/ps.percona.com_perconaservermysqlrestores.yaml",
"https://github.com/percona/percona-server-mysql-operator/blob/main/config/crd/bases/ps.percona.com_perconaservermysqls.yaml",
],
},
UpstreamSource {
project_name: "projectcalico/calico",
license: APACHE_V2,
Expand Down

Large diffs are not rendered by default.

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 @@ -242,6 +242,7 @@ postgres_operator_crunchydata_com = []
postgresql_cnpg_io = []
projectcontour_io = []
prometheusservice_services_k8s_aws = []
ps_percona_com = []
quay_redhat_com = []
quota_openshift_io = []
ray_io = []
Expand Down
9 changes: 9 additions & 0 deletions kube-custom-resources-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1951,6 +1951,13 @@ apiVersion `prometheusservice.services.k8s.aws/v1alpha1`:
- `RuleGroupsNamespace`
- `Workspace`

## ps_percona_com

apiVersion `ps.percona.com/v1alpha1`:
- `PerconaServerMySQLBackup`
- `PerconaServerMySQLRestore`
- `PerconaServerMySQL`

## quay_redhat_com

apiVersion `quay.redhat.com/v1`:
Expand Down Expand Up @@ -2897,6 +2904,8 @@ pub mod postgresql_cnpg_io;
pub mod projectcontour_io;
#[cfg(feature = "prometheusservice_services_k8s_aws")]
pub mod prometheusservice_services_k8s_aws;
#[cfg(feature = "ps_percona_com")]
pub mod ps_percona_com;
#[cfg(feature = "quay_redhat_com")]
pub mod quay_redhat_com;
#[cfg(feature = "quota_openshift_io")]
Expand Down
1 change: 1 addition & 0 deletions kube-custom-resources-rs/src/ps_percona_com/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod v1alpha1;
3 changes: 3 additions & 0 deletions kube-custom-resources-rs/src/ps_percona_com/v1alpha1/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pub mod perconaservermysqlbackups;
pub mod perconaservermysqlrestores;
pub mod perconaservermysqls;

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6,343 changes: 6,343 additions & 0 deletions kube-custom-resources-rs/src/ps_percona_com/v1alpha1/perconaservermysqls.rs

Large diffs are not rendered by default.