From 4b3aeff12ae466622c3c5a9f628e16cc3a76cf77 Mon Sep 17 00:00:00 2001 From: Shoaeb Jindani Date: Thu, 21 Mar 2024 22:16:25 +0530 Subject: [PATCH] Running copy api scripts --- api/v1beta1/ibppeer_types.go | 12 ------------ api/v1beta1/zz_generated.deepcopy.go | 5 ----- pkg/apis/deployer/deployer.go | 9 --------- 3 files changed, 26 deletions(-) diff --git a/api/v1beta1/ibppeer_types.go b/api/v1beta1/ibppeer_types.go index c88928a6..c5254f58 100644 --- a/api/v1beta1/ibppeer_types.go +++ b/api/v1beta1/ibppeer_types.go @@ -216,10 +216,6 @@ type PeerResources struct { // +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true GRPCProxy *corev1.ResourceRequirements `json:"proxy,omitempty"` - // FluentD (Optional) is the resources provided to the fluentd container - // +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true - FluentD *corev1.ResourceRequirements `json:"fluentd,omitempty"` - // CouchDB (Optional) is the resources provided to the couchdb container // +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true CouchDB *corev1.ResourceRequirements `json:"couchdb,omitempty"` @@ -277,14 +273,6 @@ type PeerImages struct { // +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true GRPCWebTag string `json:"grpcwebTag,omitempty"` - // FluentdImage is the name of the fluentd logger image - // +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true - FluentdImage string `json:"fluentdImage,omitempty"` - - // FluentdTag is the tag of the fluentd logger image - // +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true - FluentdTag string `json:"fluentdTag,omitempty"` - // CouchDBImage is the name of the couchdb image // +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true CouchDBImage string `json:"couchdbImage,omitempty"` diff --git a/api/v1beta1/zz_generated.deepcopy.go b/api/v1beta1/zz_generated.deepcopy.go index 4f35dbc6..e481df13 100644 --- a/api/v1beta1/zz_generated.deepcopy.go +++ b/api/v1beta1/zz_generated.deepcopy.go @@ -1738,11 +1738,6 @@ func (in *PeerResources) DeepCopyInto(out *PeerResources) { *out = new(v1.ResourceRequirements) (*in).DeepCopyInto(*out) } - if in.FluentD != nil { - in, out := &in.FluentD, &out.FluentD - *out = new(v1.ResourceRequirements) - (*in).DeepCopyInto(*out) - } if in.CouchDB != nil { in, out := &in.CouchDB, &out.CouchDB *out = new(v1.ResourceRequirements) diff --git a/pkg/apis/deployer/deployer.go b/pkg/apis/deployer/deployer.go index fbd2fff6..791357dd 100644 --- a/pkg/apis/deployer/deployer.go +++ b/pkg/apis/deployer/deployer.go @@ -135,15 +135,6 @@ type PeerImages struct { // GRPCWebDigest is the digest tag of the grpc web proxy image GRPCWebDigest string `json:"grpcwebDigest,omitempty"` - // FluentdImage is the name of the fluentd logger image - FluentdImage string `json:"fluentdImage,omitempty"` - - // FluentdTag is the tag of the fluentd logger image - FluentdTag string `json:"fluentdTag,omitempty"` - - // FluentdDigest is the digest tag of the fluentd logger image - FluentdDigest string `json:"fluentdDigest,omitempty"` - // CouchDBImage is the name of the couchdb image CouchDBImage string `json:"couchdbImage,omitempty"`