Skip to content
Closed
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

This file was deleted.

1 change: 1 addition & 0 deletions custom-resources/argoproj_io/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This crate is part of [kube-custom-resources-rs](https://github.com/metio/kube-c

### argoproj.io/v1alpha1
- `Application`
- `ApplicationSet`
- `AppProject`
- `ArgoCDExport`
- `ArgoCD`
Expand Down
1 change: 1 addition & 0 deletions custom-resources/argoproj_io/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This crate contains [kube-rs](https://kube.rs/) compatible bindings for Kubernet
## argoproj.io/v1alpha1
- `Application`
- `ApplicationSet`
- `AppProject`
- `ArgoCDExport`
- `ArgoCD`
Expand Down
2 changes: 1 addition & 1 deletion custom-resources/argoproj_io/src/v1alpha1/applications.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// WARNING: generated by kopium - manual changes will be overwritten
// kopium command: kopium --docs --derive=Default --derive=PartialEq --smart-derive-elision --filename crd-catalog/argoproj-labs/argocd-operator/argoproj.io/v1alpha1/applications.yaml
// kopium version: 0.22.1
// kopium version: 0.22.3

#[allow(unused_imports)]
mod prelude {
Expand Down
16,176 changes: 16,176 additions & 0 deletions custom-resources/argoproj_io/src/v1alpha1/applicationsets.rs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion custom-resources/argoproj_io/src/v1alpha1/appprojects.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// WARNING: generated by kopium - manual changes will be overwritten
// kopium command: kopium --docs --derive=Default --derive=PartialEq --smart-derive-elision --filename crd-catalog/argoproj-labs/argocd-operator/argoproj.io/v1alpha1/appprojects.yaml
// kopium version: 0.22.1
// kopium version: 0.22.3

#[allow(unused_imports)]
mod prelude {
Expand Down
8 changes: 4 additions & 4 deletions custom-resources/argoproj_io/src/v1alpha1/argocdexports.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// WARNING: generated by kopium - manual changes will be overwritten
// kopium command: kopium --docs --derive=Default --derive=PartialEq --smart-derive-elision --filename crd-catalog/argoproj-labs/argocd-operator/argoproj.io/v1alpha1/argocdexports.yaml
// kopium version: 0.22.1
// kopium version: 0.22.3

#[allow(unused_imports)]
mod prelude {
Expand All @@ -15,11 +15,11 @@ use self::prelude::*;
#[derive(CustomResource, Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
#[kube(group = "argoproj.io", version = "v1alpha1", kind = "ArgoCDExport", plural = "argocdexports")]
#[kube(namespaced)]
#[kube(status = "ArgoCDExportStatus")]
#[kube(status = "ArgoCdExportStatus")]
#[kube(schema = "disabled")]
#[kube(derive="Default")]
#[kube(derive="PartialEq")]
pub struct ArgoCDExportSpec {
pub struct ArgoCdExportSpec {
/// Argocd is the name of the ArgoCD instance to export.
pub argocd: String,
/// Image is the container image to use for the export Job.
Expand Down Expand Up @@ -242,7 +242,7 @@ pub struct ArgoCDExportStoragePvcSelectorMatchExpressions {

/// ArgoCDExportStatus defines the observed state of ArgoCDExport
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct ArgoCDExportStatus {
pub struct ArgoCdExportStatus {
/// Phase is a simple, high-level summary of where the ArgoCDExport is in its lifecycle.
/// There are five possible phase values:
/// Pending: The ArgoCDExport has been accepted by the Kubernetes system, but one or more of the required resources have not been created.
Expand Down
8 changes: 4 additions & 4 deletions custom-resources/argoproj_io/src/v1alpha1/argocds.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// WARNING: generated by kopium - manual changes will be overwritten
// kopium command: kopium --docs --derive=Default --derive=PartialEq --smart-derive-elision --filename crd-catalog/argoproj-labs/argocd-operator/argoproj.io/v1alpha1/argocds.yaml
// kopium version: 0.22.1
// kopium version: 0.22.3

#[allow(unused_imports)]
mod prelude {
Expand All @@ -16,11 +16,11 @@ use self::prelude::*;
#[derive(CustomResource, Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
#[kube(group = "argoproj.io", version = "v1alpha1", kind = "ArgoCD", plural = "argocds")]
#[kube(namespaced)]
#[kube(status = "ArgoCDStatus")]
#[kube(status = "ArgoCdStatus")]
#[kube(schema = "disabled")]
#[kube(derive="Default")]
#[kube(derive="PartialEq")]
pub struct ArgoCDSpec {
pub struct ArgoCdSpec {
/// AggregatedClusterRoles will allow users to have aggregated ClusterRoles for a cluster scoped instance.
#[serde(default, skip_serializing_if = "Option::is_none", rename = "aggregatedClusterRoles")]
pub aggregated_cluster_roles: Option<bool>,
Expand Down Expand Up @@ -6690,7 +6690,7 @@ pub struct ArgoCDTlsCa {

/// ArgoCDStatus defines the observed state of ArgoCD
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct ArgoCDStatus {
pub struct ArgoCdStatus {
/// ApplicationController is a simple, high-level summary of where the Argo CD application controller component is in its lifecycle.
/// There are four possible ApplicationController values:
/// Pending: The Argo CD application controller component has been accepted by the Kubernetes system, but one or more of the required resources have not been created.
Expand Down
1 change: 1 addition & 0 deletions custom-resources/argoproj_io/src/v1alpha1/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pub mod applications;
pub mod applicationsets;
pub mod appprojects;
pub mod argocdexports;
pub mod argocds;
8 changes: 4 additions & 4 deletions custom-resources/argoproj_io/src/v1beta1/argocds.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// WARNING: generated by kopium - manual changes will be overwritten
// kopium command: kopium --docs --derive=Default --derive=PartialEq --smart-derive-elision --filename crd-catalog/argoproj-labs/argocd-operator/argoproj.io/v1beta1/argocds.yaml
// kopium version: 0.22.1
// kopium version: 0.22.3

#[allow(unused_imports)]
mod prelude {
Expand All @@ -16,11 +16,11 @@ use self::prelude::*;
#[derive(CustomResource, Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
#[kube(group = "argoproj.io", version = "v1beta1", kind = "ArgoCD", plural = "argocds")]
#[kube(namespaced)]
#[kube(status = "ArgoCDStatus")]
#[kube(status = "ArgoCdStatus")]
#[kube(schema = "disabled")]
#[kube(derive="Default")]
#[kube(derive="PartialEq")]
pub struct ArgoCDSpec {
pub struct ArgoCdSpec {
/// AggregatedClusterRoles will allow users to have aggregated ClusterRoles for a cluster scoped instance.
#[serde(default, skip_serializing_if = "Option::is_none", rename = "aggregatedClusterRoles")]
pub aggregated_cluster_roles: Option<bool>,
Expand Down Expand Up @@ -18599,7 +18599,7 @@ pub struct ArgoCDTlsCa {

/// ArgoCDStatus defines the observed state of ArgoCD
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct ArgoCDStatus {
pub struct ArgoCdStatus {
/// ApplicationController is a simple, high-level summary of where the Argo CD application controller component is in its lifecycle.
/// There are four possible ApplicationController values:
/// Pending: The Argo CD application controller component has been accepted by the Kubernetes system, but one or more of the required resources have not been created.
Expand Down
Loading