From ec7aca3d2042c6f8ed329c619b68f291a9c772ee Mon Sep 17 00:00:00 2001 From: Samuel Attwood Date: Tue, 7 Jan 2025 01:47:12 -0500 Subject: [PATCH] Add initial object store types. Update Stream config and reorg to keep in-line with nats client. --- controllers/jetstream/stream.go | 14 +- deploy/crds.yml | 235 ++++++------ internal/controller/consumer_controller.go | 2 +- ...eyvalue_controller.go => kv_controller.go} | 26 +- ...ntroller_test.go => kv_controller_test.go} | 42 ++- internal/controller/object_controller.go | 280 ++++++++++++++ internal/controller/stream_controller.go | 10 +- internal/controller/stream_controller_test.go | 18 +- internal/controller/types.go | 3 +- .../apis/jetstream/v1beta2/keyvaluetypes.go | 55 --- .../apis/jetstream/v1beta2/kvtypes.go | 49 +++ .../apis/jetstream/v1beta2/objecttypes.go | 45 +++ .../apis/jetstream/v1beta2/register.go | 2 + .../apis/jetstream/v1beta2/streamtypes.go | 51 ++- pkg/jetstream/apis/jetstream/v1beta2/types.go | 15 + .../v1beta2/zz_generated.deepcopy.go | 207 ++++++++--- .../jetstream/v1beta2/basestreamconfig.go | 92 +++++ .../jetstream/v1beta2/consumerlimits.go | 45 +++ .../jetstream/v1beta2/keyvaluespec.go | 171 +++------ .../jetstream/v1beta2/objectstore.go | 222 +++++++++++ .../jetstream/v1beta2/objectstorespec.go | 114 ++++++ .../jetstream/v1beta2/streamspec.go | 346 ++++++++---------- .../generated/applyconfiguration/utils.go | 8 + .../v1beta2/fake/fake_jetstream_client.go | 4 + .../v1beta2/fake/fake_objectstore.go | 48 +++ .../jetstream/v1beta2/generated_expansion.go | 2 + .../jetstream/v1beta2/jetstream_client.go | 5 + .../typed/jetstream/v1beta2/objectstore.go | 71 ++++ .../informers/externalversions/generic.go | 2 + .../jetstream/v1beta2/interface.go | 7 + .../jetstream/v1beta2/objectstore.go | 87 +++++ .../jetstream/v1beta2/expansion_generated.go | 8 + .../listers/jetstream/v1beta2/objectstore.go | 67 ++++ 33 files changed, 1755 insertions(+), 598 deletions(-) rename internal/controller/{keyvalue_controller.go => kv_controller.go} (93%) rename internal/controller/{keyvalue_controller_test.go => kv_controller_test.go} (96%) create mode 100644 internal/controller/object_controller.go delete mode 100644 pkg/jetstream/apis/jetstream/v1beta2/keyvaluetypes.go create mode 100644 pkg/jetstream/apis/jetstream/v1beta2/kvtypes.go create mode 100644 pkg/jetstream/apis/jetstream/v1beta2/objecttypes.go create mode 100644 pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/basestreamconfig.go create mode 100644 pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/consumerlimits.go create mode 100644 pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstore.go create mode 100644 pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstorespec.go create mode 100644 pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_objectstore.go create mode 100644 pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/objectstore.go create mode 100644 pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/objectstore.go create mode 100644 pkg/jetstream/generated/listers/jetstream/v1beta2/objectstore.go diff --git a/controllers/jetstream/stream.go b/controllers/jetstream/stream.go index 0542b7c8..f488c5e8 100644 --- a/controllers/jetstream/stream.go +++ b/controllers/jetstream/stream.go @@ -388,10 +388,10 @@ func createStream(ctx context.Context, c jsmClient, spec apis.StreamSpec) (err e return nil }) - if spec.Republish != nil { + if spec.RePublish != nil { opts = append(opts, jsm.Republish(&jsmapi.RePublish{ - Source: spec.Republish.Source, - Destination: spec.Republish.Destination, + Source: spec.RePublish.Source, + Destination: spec.RePublish.Destination, })) } @@ -495,11 +495,11 @@ func updateStream(ctx context.Context, c jsmClient, spec apis.StreamSpec) (err e FirstSeq: spec.FirstSequence, SubjectTransform: subjectTransform, } - if spec.Republish != nil { + if spec.RePublish != nil { config.RePublish = &jsmapi.RePublish{ - Source: spec.Republish.Source, - Destination: spec.Republish.Destination, - HeadersOnly: spec.Republish.HeadersOnly, + Source: spec.RePublish.Source, + Destination: spec.RePublish.Destination, + HeadersOnly: spec.RePublish.HeadersOnly, } } if spec.Mirror != nil { diff --git a/deploy/crds.yml b/deploy/crds.yml index 6d5a8bc9..941a2294 100644 --- a/deploy/crds.yml +++ b/deploy/crds.yml @@ -28,6 +28,9 @@ spec: type: string pattern: '^[^.*>]*$' minLength: 1 + description: + description: The description of the stream. + type: string subjects: description: A list of subjects to consume, supports wildcards. type: array @@ -58,10 +61,25 @@ spec: type: integer minimum: -1 default: -1 + discard: + description: When a Stream reach it's limits either old messages are deleted or new ones are denied. + type: string + enum: + - old + - new + default: old + discardPerSubject: + description: Allows to discard messages on a subject basis. + type: boolean + default: false maxAge: description: Maximum age of any message in the stream, expressed in Go's time.Duration format. Empty for unlimited. type: string default: '' + maxMsgsPerSubject: + description: The maximum of messages per subject. + type: integer + default: 0 maxMsgSize: description: The largest message that will be accepted by the Stream. -1 for unlimited. type: integer @@ -83,23 +101,19 @@ spec: description: Disables acknowledging messages that are received by the Stream. type: boolean default: false - discard: - description: When a Stream reach it's limits either old messages are deleted or new ones are denied. - type: string - enum: - - old - - new - default: old duplicateWindow: description: The duration window to track duplicate messages for. type: string - description: - description: The description of the stream. - type: string - maxMsgsPerSubject: - description: The maximum of messages per subject. - type: integer - default: 0 + placement: + description: A stream's placement. + type: object + properties: + cluster: + type: string + tags: + type: array + items: + type: string mirror: description: A stream mirror. type: object @@ -130,16 +144,6 @@ spec: dest: description: Destination subject. type: string - placement: - description: A stream's placement. - type: object - properties: - cluster: - type: string - tags: - type: array - items: - type: string sources: description: A stream's sources. type: array @@ -172,58 +176,22 @@ spec: dest: description: Destination subject. type: string - metadata: - description: Additional Stream metadata. - type: object - additionalProperties: - type: string - servers: - description: A list of servers for creating stream - type: array - items: - type: string - default: [] - creds: - description: NATS user credentials for connecting to servers. Please make sure your controller has mounted the cerds on its path. - type: string - default: '' - nkey: - description: NATS user NKey for connecting to servers. - type: string - default: '' - tls: - description: A client's TLS certs and keys. - type: object - properties: - clientCert: - description: A client's cert filepath. Should be mounted. - type: string - clientKey: - description: A client's key filepath. Should be mounted. - type: string - rootCas: - description: A list of filepaths to CAs. Should be mounted. - type: array - items: - type: string - account: - description: Name of the account to which the Stream belongs. - type: string - pattern: '^[^.*>]*$' - republish: - description: Republish configuration of the stream. - type: object - properties: - destination: - type: string - description: Messages will be additionally published to that subject. - source: - type: string - description: Messages will be published from that subject to the destination subject. - firstSequence: - description: Sequence number from which the Stream will start. - type: number - default: 0 + sealed: + description: Seal an existing stream so no new messages can be added. + type: boolean + default: false + denyDelete: + description: When true, restricts the ability to delete messages from a stream via the API. Cannot be changed once set to true. + type: boolean + default: false + denyPurge: + description: When true, restricts the ability to purge a stream via the API. Cannot be changed once set to true. + type: boolean + default: false + allowRollup: + description: When true, allows the use of the Nats-Rollup header to replace all contents of a stream, or subject in a stream, with a single new message. + type: boolean + default: false compression: description: Stream specific compression. type: string @@ -232,6 +200,10 @@ spec: - none - '' default: '' + firstSequence: + description: Sequence number from which the Stream will start. + type: number + default: 0 subjectTransform: description: SubjectTransform is for applying a subject transform (to matching messages) when a new message is received type: object @@ -242,34 +214,79 @@ spec: dest: type: string description: Destination subject to transform into - preventDelete: - description: When true, the managed Stream will not be deleted when the resource is deleted - type: boolean - default: false - preventUpdate: - description: When true, the managed Stream will not be updated when the resource is updated - type: boolean - default: false + republish: + description: Republish configuration of the stream. + type: object + properties: + destination: + type: string + description: Messages will be additionally published to that subject. + source: + type: string + description: Messages will be published from that subject to the destination subject. allowDirect: description: When true, allow higher performance, direct access to get individual messages type: boolean default: false - allowRollup: - description: When true, allows the use of the Nats-Rollup header to replace all contents of a stream, or subject in a stream, with a single new message. - type: boolean - default: false - denyDelete: - description: When true, restricts the ability to delete messages from a stream via the API. Cannot be changed once set to true. + mirrorDirect: + description: When true, enables direct access to messages from the origin stream type: boolean default: false - denyPurge: - description: When true, restricts the ability to purge a stream via the API. Cannot be changed once set to true. + consumerLimits: + type: object + properties: + inactiveThreshold: + description: The duration of inactivity after which a consumer is considered inactive. + type: string + maxAckPending: + description: Maximum number of outstanding unacknowledged messages. + type: integer + metadata: + description: Additional Stream metadata. + type: object + additionalProperties: + type: string + account: + description: Name of the account to which the Stream belongs. + type: string + pattern: '^[^.*>]*$' + creds: + description: NATS user credentials for connecting to servers. Please make sure your controller has mounted the cerds on its path. + type: string + default: '' + nkey: + description: NATS user NKey for connecting to servers. + type: string + default: '' + preventDelete: + description: When true, the managed Stream will not be deleted when the resource is deleted type: boolean default: false - discardPerSubject: - description: Allows to discard messages on a subject basis. + preventUpdate: + description: When true, the managed Stream will not be updated when the resource is updated type: boolean default: false + servers: + description: A list of servers for creating stream + type: array + items: + type: string + default: [] + tls: + description: A client's TLS certs and keys. + type: object + properties: + clientCert: + description: A client's cert filepath. Should be mounted. + type: string + clientKey: + description: A client's key filepath. Should be mounted. + type: string + rootCas: + description: A list of filepaths to CAs. Should be mounted. + type: array + items: + type: string status: type: object properties: @@ -1040,11 +1057,11 @@ spec: spec: type: object properties: - name: - description: A unique name for the Key/Value store. + bucket: + description: A unique name for the KV Bucket. type: string description: - description: The description of the Key/Value store. + description: The description of the KV Bucket. type: string maxValueSize: description: The maximum size of a value in bytes. @@ -1056,21 +1073,21 @@ spec: description: The time expiry for keys. type: string maxBytes: - description: The maximum size of the Key/Value store in bytes. + description: The maximum size of the KV Bucket in bytes. type: integer storage: - description: The storage backend to use for the Key/Value store. + description: The storage backend to use for the KV Bucket. type: string enum: - file - memory replicas: - description: The number of replicas to keep for the Key/Value store in clustered JetStream. + description: The number of replicas to keep for the KV Bucket in clustered JetStream. type: integer minimum: 1 maximum: 5 placement: - description: The Key/Value store placement via tags or cluster name. + description: The KV Bucket placement via tags or cluster name. type: object properties: cluster: @@ -1080,17 +1097,17 @@ spec: items: type: string republish: - description: Republish configuration for the Key/Value store. + description: Republish configuration for the KV Bucket. type: object properties: destination: type: string - description: Messages will be additionally published to this subject after store. + description: Messages will be additionally published to this subject after Bucket. source: type: string description: Messages will be published from this subject to the destination subject. mirror: - description: A Key/Value store mirror. + description: A KV Bucket mirror. type: object properties: name: @@ -1120,10 +1137,10 @@ spec: description: Destination subject. type: string compression: - description: Key/Value store compression. + description: KV Bucket compression. type: boolean sources: - description: A Key/Value store's sources. + description: A KV Bucket's sources. type: array items: type: object @@ -1218,9 +1235,9 @@ spec: additionalPrinterColumns: - name: State type: string - description: The current state of the Key/Value store. + description: The current state of the KV Bucket. jsonPath: .status.conditions[?(@.type == 'Ready')].reason - - name: Key/Value Store Name + - name: KV Bucket Name type: string - description: The name of the Key/Value store. + description: The name of the KV Bucket. jsonPath: .spec.name \ No newline at end of file diff --git a/internal/controller/consumer_controller.go b/internal/controller/consumer_controller.go index 9010509f..67540458 100644 --- a/internal/controller/consumer_controller.go +++ b/internal/controller/consumer_controller.go @@ -114,7 +114,7 @@ func (r *ConsumerReconciler) Reconcile(ctx context.Context, req ctrl.Request) (c } func (r *ConsumerReconciler) deleteConsumer(ctx context.Context, log logr.Logger, consumer *api.Consumer) error { - // Set status to not false + // Set status to false consumer.Status.Conditions = updateReadyCondition(consumer.Status.Conditions, v1.ConditionFalse, "Finalizing", "Performing finalizer operations.") if err := r.Status().Update(ctx, consumer); err != nil { return fmt.Errorf("update ready condition: %w", err) diff --git a/internal/controller/keyvalue_controller.go b/internal/controller/kv_controller.go similarity index 93% rename from internal/controller/keyvalue_controller.go rename to internal/controller/kv_controller.go index d76220c1..5f10b967 100644 --- a/internal/controller/keyvalue_controller.go +++ b/internal/controller/kv_controller.go @@ -67,7 +67,7 @@ func (r *KeyValueReconciler) Reconcile(ctx context.Context, req ctrl.Request) (c return ctrl.Result{}, fmt.Errorf("get keyvalue resource '%s': %w", req.NamespacedName.String(), err) } - log = log.WithValues("keyValueName", keyValue.Spec.Name) + log = log.WithValues("keyValueName", keyValue.Spec.Bucket) // Update ready status to unknown when no status is set if len(keyValue.Status.Conditions) == 0 { @@ -81,9 +81,9 @@ func (r *KeyValueReconciler) Reconcile(ctx context.Context, req ctrl.Request) (c } // Add finalizer - if !controllerutil.ContainsFinalizer(keyValue, keyValueFinalizer) { + if !controllerutil.ContainsFinalizer(keyValue, kvFinalizer) { log.Info("Adding KeyValue finalizer.") - if ok := controllerutil.AddFinalizer(keyValue, keyValueFinalizer); !ok { + if ok := controllerutil.AddFinalizer(keyValue, kvFinalizer); !ok { return ctrl.Result{}, errors.New("failed to add finalizer to keyvalue resource") } @@ -96,7 +96,7 @@ func (r *KeyValueReconciler) Reconcile(ctx context.Context, req ctrl.Request) (c // Check Deletion markedForDeletion := keyValue.GetDeletionTimestamp() != nil if markedForDeletion { - if controllerutil.ContainsFinalizer(keyValue, keyValueFinalizer) { + if controllerutil.ContainsFinalizer(keyValue, kvFinalizer) { err := r.deleteKeyValue(ctx, log, keyValue) if err != nil { return ctrl.Result{}, fmt.Errorf("delete keyvalue: %w", err) @@ -116,7 +116,7 @@ func (r *KeyValueReconciler) Reconcile(ctx context.Context, req ctrl.Request) (c } func (r *KeyValueReconciler) deleteKeyValue(ctx context.Context, log logr.Logger, keyValue *api.KeyValue) error { - // Set status to not false + // Set status to false keyValue.Status.Conditions = updateReadyCondition(keyValue.Status.Conditions, v1.ConditionFalse, "Finalizing", "Performing finalizer operations.") if err := r.Status().Update(ctx, keyValue); err != nil { return fmt.Errorf("update ready condition: %w", err) @@ -125,10 +125,10 @@ func (r *KeyValueReconciler) deleteKeyValue(ctx context.Context, log logr.Logger if !keyValue.Spec.PreventDelete && !r.ReadOnly() { log.Info("Deleting KeyValue.") err := r.WithJetStreamClient(keyValueConnOpts(keyValue.Spec), func(js jetstream.JetStream) error { - return js.DeleteKeyValue(ctx, keyValue.Spec.Name) + return js.DeleteKeyValue(ctx, keyValue.Spec.Bucket) }) if errors.Is(err, jetstream.ErrBucketNotFound) { - log.Info("KeyValue does not exist, unable to delete.", "keyValueName", keyValue.Spec.Name) + log.Info("KeyValue does not exist, unable to delete.", "keyValueName", keyValue.Spec.Bucket) } else if err != nil { return fmt.Errorf("delete keyvalue during finalization: %w", err) } @@ -140,7 +140,7 @@ func (r *KeyValueReconciler) deleteKeyValue(ctx context.Context, log logr.Logger } log.Info("Removing KeyValue finalizer.") - if ok := controllerutil.RemoveFinalizer(keyValue, keyValueFinalizer); !ok { + if ok := controllerutil.RemoveFinalizer(keyValue, kvFinalizer); !ok { return errors.New("failed to remove keyvalue finalizer") } if err := r.Update(ctx, keyValue); err != nil { @@ -234,7 +234,7 @@ func keyValueConnOpts(spec api.KeyValueSpec) *connectionOptions { func keyValueSpecToConfig(spec *api.KeyValueSpec) (jetstream.KeyValueConfig, error) { // Set directly mapped fields config := jetstream.KeyValueConfig{ - Bucket: spec.Name, + Bucket: spec.Bucket, Compression: spec.Compression, Description: spec.Description, History: uint8(spec.History), @@ -290,11 +290,11 @@ func keyValueSpecToConfig(spec *api.KeyValueSpec) (jetstream.KeyValueConfig, err } // RePublish - if spec.Republish != nil { + if spec.RePublish != nil { config.RePublish = &jetstream.RePublish{ - Source: spec.Republish.Source, - Destination: spec.Republish.Destination, - HeadersOnly: spec.Republish.HeadersOnly, + Source: spec.RePublish.Source, + Destination: spec.RePublish.Destination, + HeadersOnly: spec.RePublish.HeadersOnly, } } diff --git a/internal/controller/keyvalue_controller_test.go b/internal/controller/kv_controller_test.go similarity index 96% rename from internal/controller/keyvalue_controller_test.go rename to internal/controller/kv_controller_test.go index 26b06688..8131fe72 100644 --- a/internal/controller/keyvalue_controller_test.go +++ b/internal/controller/kv_controller_test.go @@ -66,7 +66,7 @@ var _ = Describe("KeyValue Controller", func() { Namespace: "default", }, Spec: api.KeyValueSpec{ - Name: keyValueName, + Bucket: keyValueName, Replicas: 1, History: 10, TTL: "5m", @@ -97,9 +97,9 @@ var _ = Describe("KeyValue Controller", func() { if err != nil { Expect(err).To(MatchError(k8serrors.IsNotFound, "Is not found")) } else { - if controllerutil.ContainsFinalizer(resource, keyValueFinalizer) { + if controllerutil.ContainsFinalizer(resource, kvFinalizer) { By("removing the finalizer") - controllerutil.RemoveFinalizer(resource, keyValueFinalizer) + controllerutil.RemoveFinalizer(resource, kvFinalizer) Expect(k8sClient.Update(ctx, resource)).To(Succeed()) } @@ -145,7 +145,7 @@ var _ = Describe("KeyValue Controller", func() { return got }).WithContext(ctx). Should(SatisfyAll( - HaveField("Finalizers", HaveExactElements(keyValueFinalizer)), + HaveField("Finalizers", HaveExactElements(kvFinalizer)), HaveField("Status.Conditions", Not(BeEmpty())), )) @@ -163,7 +163,7 @@ var _ = Describe("KeyValue Controller", func() { By("initializing the keyvalue resource") By("setting the finalizer") - Expect(controllerutil.AddFinalizer(keyValue, keyValueFinalizer)).To(BeTrue()) + Expect(controllerutil.AddFinalizer(keyValue, kvFinalizer)).To(BeTrue()) Expect(k8sClient.Update(ctx, keyValue)).To(Succeed()) By("setting an unknown ready state") @@ -519,7 +519,7 @@ var _ = Describe("KeyValue Controller", func() { By("checking that the finalizer is not removed") Expect(k8sClient.Get(ctx, typeNamespacedName, keyValue)).To(Succeed()) - Expect(keyValue.Finalizers).To(ContainElement(keyValueFinalizer)) + Expect(keyValue.Finalizers).To(ContainElement(kvFinalizer)) }) }) }) @@ -580,15 +580,11 @@ func Test_mapKVSpecToConfig(t *testing.T) { { name: "full spec", spec: &api.KeyValueSpec{ - Account: "", - Creds: "", - Description: "kv description", - PreventDelete: false, - PreventUpdate: false, - History: 20, - MaxValueSize: 1024, - MaxBytes: 1048576, - TTL: "1h", + Description: "kv description", + History: 20, + MaxValueSize: 1024, + MaxBytes: 1048576, + TTL: "1h", Mirror: &api.StreamSource{ Name: "mirror", OptStartSeq: 5, @@ -601,20 +597,18 @@ func Test_mapKVSpecToConfig(t *testing.T) { Dest: "transform-dest", }}, }, - Name: "kv-name", - Nkey: "", + Bucket: "kv-name", Placement: &api.StreamPlacement{ Cluster: "test-cluster", Tags: []string{"tag"}, }, Replicas: 3, - Republish: &api.RePublish{ + RePublish: &api.RePublish{ Source: "re-publish-source", Destination: "re-publish-dest", HeadersOnly: true, }, Compression: true, - Servers: nil, Sources: []*api.StreamSource{{ Name: "source", OptStartSeq: 5, @@ -628,7 +622,15 @@ func Test_mapKVSpecToConfig(t *testing.T) { }}, }}, Storage: "memory", - TLS: api.TLS{}, + BaseStreamConfig: api.BaseStreamConfig{ + Account: "", + Creds: "", + PreventDelete: false, + PreventUpdate: false, + Nkey: "", + Servers: nil, + TLS: api.TLS{}, + }, }, want: jetstream.KeyValueConfig{ Bucket: "kv-name", diff --git a/internal/controller/object_controller.go b/internal/controller/object_controller.go new file mode 100644 index 00000000..89482a87 --- /dev/null +++ b/internal/controller/object_controller.go @@ -0,0 +1,280 @@ +/* +Copyright 2025. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package controller + +import ( + "context" + "errors" + "fmt" + "time" + + "github.com/go-logr/logr" + api "github.com/nats-io/nack/pkg/jetstream/apis/jetstream/v1beta2" + "github.com/nats-io/nats.go/jetstream" + v1 "k8s.io/api/core/v1" + apierrors "k8s.io/apimachinery/pkg/api/errors" + "k8s.io/klog/v2" + ctrl "sigs.k8s.io/controller-runtime" + "sigs.k8s.io/controller-runtime/pkg/controller/controllerutil" + "sigs.k8s.io/controller-runtime/pkg/predicate" +) + +// ObjectStoreReconciler reconciles a ObjectStore object +type ObjectStoreReconciler struct { + JetStreamController +} + +// Reconcile is part of the main kubernetes reconciliation loop which aims to +// move the current state of the cluster closer to the desired state. +// +// It performs three main operations: +// - Initialize finalizer and ready condition if not present +// - Delete ObjectStore if it is marked for deletion. +// - Create or Update the ObjectStore +// +// A call to reconcile may perform only one action, expecting the reconciliation to be triggered again by an update. +// For example: Setting the finalizer triggers a second reconciliation. Reconcile returns after setting the finalizer, +// to prevent parallel reconciliations performing the same steps. +func (r *ObjectStoreReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) { + log := klog.FromContext(ctx) + + if ok := r.ValidNamespace(req.Namespace); !ok { + log.Info("Controller restricted to namespace, skipping reconciliation.") + return ctrl.Result{}, nil + } + + // Fetch ObjectStore resource + objectStore := &api.ObjectStore{} + if err := r.Get(ctx, req.NamespacedName, objectStore); err != nil { + if apierrors.IsNotFound(err) { + log.Info("ObjectStore resource not found. Ignoring since object must be deleted.") + return ctrl.Result{}, nil + } + return ctrl.Result{}, fmt.Errorf("get objectstore resource '%s': %w", req.NamespacedName.String(), err) + } + + log = log.WithValues("objectStoreName", objectStore.Spec.Bucket) + + // Update ready status to unknown when no status is set + if len(objectStore.Status.Conditions) == 0 { + log.Info("Setting initial ready condition to unknown.") + objectStore.Status.Conditions = updateReadyCondition(objectStore.Status.Conditions, v1.ConditionUnknown, "Reconciling", "Starting reconciliation") + err := r.Status().Update(ctx, objectStore) + if err != nil { + return ctrl.Result{}, fmt.Errorf("set condition unknown: %w", err) + } + return ctrl.Result{Requeue: true}, nil + } + + // Add finalizer + if !controllerutil.ContainsFinalizer(objectStore, objectFinalizer) { + log.Info("Adding ObjectStore finalizer.") + if ok := controllerutil.AddFinalizer(objectStore, objectFinalizer); !ok { + return ctrl.Result{}, errors.New("failed to add finalizer to objectstore resource") + } + + if err := r.Update(ctx, objectStore); err != nil { + return ctrl.Result{}, fmt.Errorf("update objectstore resource to add finalizer: %w", err) + } + return ctrl.Result{}, nil + } + + // Check Deletion + markedForDeletion := objectStore.GetDeletionTimestamp() != nil + if markedForDeletion { + if controllerutil.ContainsFinalizer(objectStore, objectFinalizer) { + err := r.deleteObjectStore(ctx, log, objectStore) + if err != nil { + return ctrl.Result{}, fmt.Errorf("delete objectstore: %w", err) + } + } else { + log.Info("ObjectStore marked for deletion and already finalized. Ignoring.") + } + + return ctrl.Result{}, nil + } + + // Create or update ObjectStore + if err := r.createOrUpdate(ctx, log, objectStore); err != nil { + return ctrl.Result{}, fmt.Errorf("create or update: %s", err) + } + return ctrl.Result{}, nil +} + +func (r *ObjectStoreReconciler) deleteObjectStore(ctx context.Context, log logr.Logger, objectStore *api.ObjectStore) error { + // Set status to false + objectStore.Status.Conditions = updateReadyCondition(objectStore.Status.Conditions, v1.ConditionFalse, "Finalizing", "Performing finalizer operations.") + if err := r.Status().Update(ctx, objectStore); err != nil { + return fmt.Errorf("update ready condition: %w", err) + } + + if !objectStore.Spec.PreventDelete && !r.ReadOnly() { + log.Info("Deleting ObjectStore.") + err := r.WithJetStreamClient(objectStoreConnOpts(objectStore.Spec), func(js jetstream.JetStream) error { + return js.DeleteObjectStore(ctx, objectStore.Spec.Bucket) + }) + if errors.Is(err, jetstream.ErrBucketNotFound) { + log.Info("ObjectStore does not exist, unable to delete.", "objectStoreName", objectStore.Spec.Bucket) + } else if err != nil { + return fmt.Errorf("delete objectstore during finalization: %w", err) + } + } else { + log.Info("Skipping ObjectStore deletion.", + "preventDelete", objectStore.Spec.PreventDelete, + "read-only", r.ReadOnly(), + ) + } + + log.Info("Removing ObjectStore finalizer.") + if ok := controllerutil.RemoveFinalizer(objectStore, objectFinalizer); !ok { + return errors.New("failed to remove objectstore finalizer") + } + if err := r.Update(ctx, objectStore); err != nil { + return fmt.Errorf("remove finalizer: %w", err) + } + + return nil +} + +func (r *ObjectStoreReconciler) createOrUpdate(ctx context.Context, log logr.Logger, objectStore *api.ObjectStore) error { + // Create or Update the ObjectStore based on the spec + if r.ReadOnly() { + log.Info("Skipping ObjectStore creation or update.", + "read-only", r.ReadOnly(), + ) + return nil + } + + // Map spec to ObjectStore targetConfig + targetConfig, err := objectStoreSpecToConfig(&objectStore.Spec) + if err != nil { + return fmt.Errorf("map spec to objectstore targetConfig: %w", err) + } + + // UpdateObjectStore is called on every reconciliation when the stream is not to be deleted. + // TODO(future-feature): Do we need to check if config differs? + err = r.WithJetStreamClient(objectStoreConnOpts(objectStore.Spec), func(js jetstream.JetStream) error { + exists := false + _, err := js.ObjectStore(ctx, targetConfig.Bucket) + if err == nil { + exists = true + } else if !errors.Is(err, jetstream.ErrBucketNotFound) { + return err + } + + if !exists { + log.Info("Creating ObjectStore.") + _, err = js.CreateObjectStore(ctx, targetConfig) + return err + } + + if !objectStore.Spec.PreventUpdate { + log.Info("Updating ObjectStore.") + _, err = js.UpdateObjectStore(ctx, targetConfig) + return err + } else { + log.Info("Skipping ObjectStore update.", + "preventUpdate", objectStore.Spec.PreventUpdate, + ) + } + + return nil + }) + if err != nil { + err = fmt.Errorf("create or update objectstore: %w", err) + objectStore.Status.Conditions = updateReadyCondition(objectStore.Status.Conditions, v1.ConditionFalse, "Errored", err.Error()) + if err := r.Status().Update(ctx, objectStore); err != nil { + log.Error(err, "Failed to update ready condition to Errored.") + } + return err + } + + // update the observed generation and ready status + objectStore.Status.ObservedGeneration = objectStore.Generation + objectStore.Status.Conditions = updateReadyCondition( + objectStore.Status.Conditions, + v1.ConditionTrue, + "Reconciling", + "ObjectStore successfully created or updated.", + ) + err = r.Status().Update(ctx, objectStore) + if err != nil { + return fmt.Errorf("update ready condition: %w", err) + } + + return nil +} + +// objectStoreConnOpts extracts nats connection relevant fields from the given ObjectStore spec as connectionOptions. +func objectStoreConnOpts(spec api.ObjectStoreSpec) *connectionOptions { + return &connectionOptions{ + Account: spec.Account, + Creds: spec.Creds, + Nkey: spec.Nkey, + Servers: spec.Servers, + TLS: spec.TLS, + } +} + +// objectStoreSpecToConfig creates a jetstream.ObjectStoreConfig matching the given ObjectStore resource spec +func objectStoreSpecToConfig(spec *api.ObjectStoreSpec) (jetstream.ObjectStoreConfig, error) { + // Set directly mapped fields + config := jetstream.ObjectStoreConfig{ + Bucket: spec.Bucket, + Compression: spec.Compression, + Description: spec.Description, + MaxBytes: int64(spec.MaxBytes), + Replicas: spec.Replicas, + } + + // TTL + if spec.TTL != "" { + t, err := time.ParseDuration(spec.TTL) + if err != nil { + return jetstream.ObjectStoreConfig{}, fmt.Errorf("invalid ttl: %w", err) + } + config.TTL = t + } + + // storage + if spec.Storage != "" { + err := config.Storage.UnmarshalJSON(asJsonString(spec.Storage)) + if err != nil { + return jetstream.ObjectStoreConfig{}, fmt.Errorf("invalid storage: %w", err) + } + } + + // placement + if spec.Placement != nil { + config.Placement = &jetstream.Placement{ + Cluster: spec.Placement.Cluster, + Tags: spec.Placement.Tags, + } + } + + return config, nil +} + +// SetupWithManager sets up the controller with the Manager. +func (r *ObjectStoreReconciler) SetupWithManager(mgr ctrl.Manager) error { + return ctrl.NewControllerManagedBy(mgr). + For(&api.ObjectStore{}). + Owns(&api.ObjectStore{}). + // Only trigger on generation changes + WithEventFilter(predicate.GenerationChangedPredicate{}). + Complete(r) +} diff --git a/internal/controller/stream_controller.go b/internal/controller/stream_controller.go index bd7ad3ad..3f1b2f70 100644 --- a/internal/controller/stream_controller.go +++ b/internal/controller/stream_controller.go @@ -116,7 +116,7 @@ func (r *StreamReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctr } func (r *StreamReconciler) deleteStream(ctx context.Context, log logr.Logger, stream *api.Stream) error { - // Set status to not false + // Set status to false stream.Status.Conditions = updateReadyCondition(stream.Status.Conditions, v1.ConditionFalse, "Finalizing", "Performing finalizer operations.") if err := r.Status().Update(ctx, stream); err != nil { return fmt.Errorf("update ready condition: %w", err) @@ -346,11 +346,11 @@ func streamSpecToConfig(spec *api.StreamSpec) (jetstream.StreamConfig, error) { } // rePublish - if spec.Republish != nil { + if spec.RePublish != nil { config.RePublish = &jetstream.RePublish{ - Source: spec.Republish.Source, - Destination: spec.Republish.Destination, - HeadersOnly: spec.Republish.HeadersOnly, + Source: spec.RePublish.Source, + Destination: spec.RePublish.Destination, + HeadersOnly: spec.RePublish.HeadersOnly, } } diff --git a/internal/controller/stream_controller_test.go b/internal/controller/stream_controller_test.go index e2506a7f..79c83fbf 100644 --- a/internal/controller/stream_controller_test.go +++ b/internal/controller/stream_controller_test.go @@ -570,16 +570,12 @@ func Test_mapSpecToConfig(t *testing.T) { { name: "full spec", spec: &api.StreamSpec{ - Account: "", AllowDirect: true, AllowRollup: true, - Creds: "", DenyDelete: true, DenyPurge: true, Description: "stream description", DiscardPerSubject: true, - PreventDelete: false, - PreventUpdate: false, Discard: "new", DuplicateWindow: "5s", MaxAge: "30s", @@ -601,14 +597,13 @@ func Test_mapSpecToConfig(t *testing.T) { }}, }, Name: "stream-name", - Nkey: "", NoAck: true, Placement: &api.StreamPlacement{ Cluster: "test-cluster", Tags: []string{"tag"}, }, Replicas: 3, - Republish: &api.RePublish{ + RePublish: &api.RePublish{ Source: "re-publish-source", Destination: "re-publish-dest", HeadersOnly: true, @@ -623,7 +618,6 @@ func Test_mapSpecToConfig(t *testing.T) { "meta": "data", }, Retention: "interest", - Servers: nil, Sources: []*api.StreamSource{{ Name: "source", OptStartSeq: 5, @@ -638,7 +632,15 @@ func Test_mapSpecToConfig(t *testing.T) { }}, Storage: "file", Subjects: []string{"orders.*"}, - TLS: api.TLS{}, + BaseStreamConfig: api.BaseStreamConfig{ + Account: "", + Creds: "", + Nkey: "", + PreventDelete: false, + PreventUpdate: false, + Servers: nil, + TLS: api.TLS{}, + }, }, want: jetstream.StreamConfig{ Name: "stream-name", diff --git a/internal/controller/types.go b/internal/controller/types.go index bc3b20c3..247f0304 100644 --- a/internal/controller/types.go +++ b/internal/controller/types.go @@ -3,6 +3,7 @@ package controller const ( readyCondType = "Ready" streamFinalizer = "stream.nats.io/finalizer" - keyValueFinalizer = "keyvalue.nats.io/finalizer" + kvFinalizer = "kv.nats.io/finalizer" + objectFinalizer = "object.nats.io/finalizer" consumerFinalizer = "consumer.nats.io/finalizer" ) diff --git a/pkg/jetstream/apis/jetstream/v1beta2/keyvaluetypes.go b/pkg/jetstream/apis/jetstream/v1beta2/keyvaluetypes.go deleted file mode 100644 index 03bc9dbe..00000000 --- a/pkg/jetstream/apis/jetstream/v1beta2/keyvaluetypes.go +++ /dev/null @@ -1,55 +0,0 @@ -package v1beta2 - -import ( - k8smeta "k8s.io/apimachinery/pkg/apis/meta/v1" -) - -// +genclient -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object - -// Stream is a specification for a Stream resource -type KeyValue struct { - k8smeta.TypeMeta `json:",inline"` - k8smeta.ObjectMeta `json:"metadata,omitempty"` - - Spec KeyValueSpec `json:"spec"` - Status Status `json:"status"` -} - -func (s *KeyValue) GetSpec() interface{} { - return s.Spec -} - -// StreamSpec is the spec for a Stream resource -type KeyValueSpec struct { - Account string `json:"account"` - Compression bool `json:"compression"` - Creds string `json:"creds"` - Description string `json:"description"` - History int `json:"history"` - MaxBytes int `json:"maxBytes"` - MaxValueSize int `json:"maxValueSize"` - Mirror *StreamSource `json:"mirror"` - Name string `json:"name"` - Nkey string `json:"nkey"` - Placement *StreamPlacement `json:"placement"` - PreventDelete bool `json:"preventDelete"` - PreventUpdate bool `json:"preventUpdate"` - Replicas int `json:"replicas"` - Republish *RePublish `json:"republish"` - Servers []string `json:"servers"` - Sources []*StreamSource `json:"sources"` - Storage string `json:"storage"` - TLS TLS `json:"tls"` - TTL string `json:"ttl"` -} - -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object - -// KeyValueList is a list of Stream resources -type KeyValueList struct { - k8smeta.TypeMeta `json:",inline"` - k8smeta.ListMeta `json:"metadata"` - - Items []KeyValue `json:"items"` -} diff --git a/pkg/jetstream/apis/jetstream/v1beta2/kvtypes.go b/pkg/jetstream/apis/jetstream/v1beta2/kvtypes.go new file mode 100644 index 00000000..fbf37e0a --- /dev/null +++ b/pkg/jetstream/apis/jetstream/v1beta2/kvtypes.go @@ -0,0 +1,49 @@ +package v1beta2 + +import ( + k8smeta "k8s.io/apimachinery/pkg/apis/meta/v1" +) + +// +genclient +// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object + +// Stream is a specification for a Stream resource +type KeyValue struct { + k8smeta.TypeMeta `json:",inline"` + k8smeta.ObjectMeta `json:"metadata,omitempty"` + + Spec KeyValueSpec `json:"spec"` + Status Status `json:"status"` +} + +func (s *KeyValue) GetSpec() interface{} { + return s.Spec +} + +// StreamSpec is the spec for a Stream resource +type KeyValueSpec struct { + Bucket string `json:"bucket"` + Description string `json:"description"` + MaxValueSize int `json:"maxValueSize"` + History int `json:"history"` + TTL string `json:"ttl"` + MaxBytes int `json:"maxBytes"` + Storage string `json:"storage"` + Replicas int `json:"replicas"` + Placement *StreamPlacement `json:"placement"` + RePublish *RePublish `json:"republish"` + Mirror *StreamSource `json:"mirror"` + Sources []*StreamSource `json:"sources"` + Compression bool `json:"compression"` + BaseStreamConfig +} + +// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object + +// KeyValueList is a list of Stream resources +type KeyValueList struct { + k8smeta.TypeMeta `json:",inline"` + k8smeta.ListMeta `json:"metadata"` + + Items []KeyValue `json:"items"` +} diff --git a/pkg/jetstream/apis/jetstream/v1beta2/objecttypes.go b/pkg/jetstream/apis/jetstream/v1beta2/objecttypes.go new file mode 100644 index 00000000..396426da --- /dev/null +++ b/pkg/jetstream/apis/jetstream/v1beta2/objecttypes.go @@ -0,0 +1,45 @@ +package v1beta2 + +import ( + k8smeta "k8s.io/apimachinery/pkg/apis/meta/v1" +) + +// +genclient +// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object + +// Stream is a specification for a Stream resource +type ObjectStore struct { + k8smeta.TypeMeta `json:",inline"` + k8smeta.ObjectMeta `json:"metadata,omitempty"` + + Spec ObjectStoreSpec `json:"spec"` + Status Status `json:"status"` +} + +func (s *ObjectStore) GetSpec() interface{} { + return s.Spec +} + +// StreamSpec is the spec for a Stream resource +type ObjectStoreSpec struct { + Bucket string `json:"bucket"` + Description string `json:"description"` + TTL string `json:"ttl"` + MaxBytes int `json:"maxBytes"` + Storage string `json:"storage"` + Replicas int `json:"replicas"` + Placement *StreamPlacement `json:"placement"` + Compression bool `json:"compression"` + Metadata map[string]string `json:"metadata"` + BaseStreamConfig +} + +// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object + +// ObjectStoreList is a list of Stream resources +type ObjectStoreList struct { + k8smeta.TypeMeta `json:",inline"` + k8smeta.ListMeta `json:"metadata"` + + Items []ObjectStore `json:"items"` +} diff --git a/pkg/jetstream/apis/jetstream/v1beta2/register.go b/pkg/jetstream/apis/jetstream/v1beta2/register.go index 881fe90a..72e63313 100644 --- a/pkg/jetstream/apis/jetstream/v1beta2/register.go +++ b/pkg/jetstream/apis/jetstream/v1beta2/register.go @@ -35,6 +35,8 @@ func addKnownTypes(scheme *runtime.Scheme) error { &StreamList{}, &KeyValue{}, &KeyValueList{}, + &ObjectStore{}, + &ObjectStoreList{}, &Consumer{}, &ConsumerList{}, &Account{}, diff --git a/pkg/jetstream/apis/jetstream/v1beta2/streamtypes.go b/pkg/jetstream/apis/jetstream/v1beta2/streamtypes.go index 1128d1c4..964a5e27 100644 --- a/pkg/jetstream/apis/jetstream/v1beta2/streamtypes.go +++ b/pkg/jetstream/apis/jetstream/v1beta2/streamtypes.go @@ -22,41 +22,38 @@ func (s *Stream) GetSpec() interface{} { // StreamSpec is the spec for a Stream resource type StreamSpec struct { - Account string `json:"account"` - AllowDirect bool `json:"allowDirect"` - AllowRollup bool `json:"allowRollup"` - Creds string `json:"creds"` - DenyDelete bool `json:"denyDelete"` - DenyPurge bool `json:"denyPurge"` + Name string `json:"name"` Description string `json:"description"` - DiscardPerSubject bool `json:"discardPerSubject"` - PreventDelete bool `json:"preventDelete"` - PreventUpdate bool `json:"preventUpdate"` - Discard string `json:"discard"` - DuplicateWindow string `json:"duplicateWindow"` - MaxAge string `json:"maxAge"` - MaxBytes int `json:"maxBytes"` + Subjects []string `json:"subjects"` + Retention string `json:"retention"` MaxConsumers int `json:"maxConsumers"` MaxMsgs int `json:"maxMsgs"` - MaxMsgSize int `json:"maxMsgSize"` + MaxBytes int `json:"maxBytes"` + Discard string `json:"discard"` + DiscardPerSubject bool `json:"discardPerSubject"` // Maps to DiscardNewPerSubject + MaxAge string `json:"maxAge"` MaxMsgsPerSubject int `json:"maxMsgsPerSubject"` - Mirror *StreamSource `json:"mirror"` - Name string `json:"name"` - Nkey string `json:"nkey"` + MaxMsgSize int `json:"maxMsgSize"` + Storage string `json:"storage"` + Replicas int `json:"replicas"` NoAck bool `json:"noAck"` + DuplicateWindow string `json:"duplicateWindow"` // Maps to Duplicates Placement *StreamPlacement `json:"placement"` - Replicas int `json:"replicas"` - Republish *RePublish `json:"republish"` - SubjectTransform *SubjectTransform `json:"subjectTransform"` - FirstSequence uint64 `json:"firstSequence"` + Mirror *StreamSource `json:"mirror"` + Sources []*StreamSource `json:"sources"` + Sealed bool `json:"sealed"` + DenyDelete bool `json:"denyDelete"` + DenyPurge bool `json:"denyPurge"` + AllowRollup bool `json:"allowRollup"` Compression string `json:"compression"` + FirstSequence uint64 `json:"firstSequence"` // Maps to FirstSeq + SubjectTransform *SubjectTransform `json:"subjectTransform"` + RePublish *RePublish `json:"republish"` + AllowDirect bool `json:"allowDirect"` + MirrorDirect bool `json:"mirrorDirect"` + ConsumerLimits *ConsumerLimits `json:"consumerLimits"` Metadata map[string]string `json:"metadata"` - Retention string `json:"retention"` - Servers []string `json:"servers"` - Sources []*StreamSource `json:"sources"` - Storage string `json:"storage"` - Subjects []string `json:"subjects"` - TLS TLS `json:"tls"` + BaseStreamConfig } type SubjectTransform struct { diff --git a/pkg/jetstream/apis/jetstream/v1beta2/types.go b/pkg/jetstream/apis/jetstream/v1beta2/types.go index 099c7bd6..fa3f9e97 100644 --- a/pkg/jetstream/apis/jetstream/v1beta2/types.go +++ b/pkg/jetstream/apis/jetstream/v1beta2/types.go @@ -22,6 +22,21 @@ type Condition struct { LastTransitionTime string `json:"lastTransitionTime"` } +type BaseStreamConfig struct { + Account string `json:"account"` + Creds string `json:"creds"` + Nkey string `json:"nkey"` + PreventDelete bool `json:"preventDelete"` + PreventUpdate bool `json:"preventUpdate"` + Servers []string `json:"servers"` + TLS TLS `json:"tls"` +} + +type ConsumerLimits struct { + InactiveThreshold string `json:"inactiveThreshold"` + MaxAckPending int `json:"maxAckPending"` +} + type TLS struct { ClientCert string `json:"clientCert"` ClientKey string `json:"clientKey"` diff --git a/pkg/jetstream/apis/jetstream/v1beta2/zz_generated.deepcopy.go b/pkg/jetstream/apis/jetstream/v1beta2/zz_generated.deepcopy.go index 23e4a228..71ebfdbf 100644 --- a/pkg/jetstream/apis/jetstream/v1beta2/zz_generated.deepcopy.go +++ b/pkg/jetstream/apis/jetstream/v1beta2/zz_generated.deepcopy.go @@ -114,6 +114,28 @@ func (in *AccountSpec) DeepCopy() *AccountSpec { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *BaseStreamConfig) DeepCopyInto(out *BaseStreamConfig) { + *out = *in + if in.Servers != nil { + in, out := &in.Servers, &out.Servers + *out = make([]string, len(*in)) + copy(*out, *in) + } + in.TLS.DeepCopyInto(&out.TLS) + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BaseStreamConfig. +func (in *BaseStreamConfig) DeepCopy() *BaseStreamConfig { + if in == nil { + return nil + } + out := new(BaseStreamConfig) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Condition) DeepCopyInto(out *Condition) { *out = *in @@ -158,6 +180,22 @@ func (in *Consumer) DeepCopyObject() runtime.Object { return nil } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ConsumerLimits) DeepCopyInto(out *ConsumerLimits) { + *out = *in + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsumerLimits. +func (in *ConsumerLimits) DeepCopy() *ConsumerLimits { + if in == nil { + return nil + } + out := new(ConsumerLimits) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ConsumerList) DeepCopyInto(out *ConsumerList) { *out = *in @@ -327,25 +365,20 @@ func (in *KeyValueList) DeepCopyObject() runtime.Object { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KeyValueSpec) DeepCopyInto(out *KeyValueSpec) { *out = *in - if in.Mirror != nil { - in, out := &in.Mirror, &out.Mirror - *out = new(StreamSource) - (*in).DeepCopyInto(*out) - } if in.Placement != nil { in, out := &in.Placement, &out.Placement *out = new(StreamPlacement) (*in).DeepCopyInto(*out) } - if in.Republish != nil { - in, out := &in.Republish, &out.Republish + if in.RePublish != nil { + in, out := &in.RePublish, &out.RePublish *out = new(RePublish) **out = **in } - if in.Servers != nil { - in, out := &in.Servers, &out.Servers - *out = make([]string, len(*in)) - copy(*out, *in) + if in.Mirror != nil { + in, out := &in.Mirror, &out.Mirror + *out = new(StreamSource) + (*in).DeepCopyInto(*out) } if in.Sources != nil { in, out := &in.Sources, &out.Sources @@ -358,7 +391,7 @@ func (in *KeyValueSpec) DeepCopyInto(out *KeyValueSpec) { } } } - in.TLS.DeepCopyInto(&out.TLS) + in.BaseStreamConfig.DeepCopyInto(&out.BaseStreamConfig) return } @@ -372,6 +405,96 @@ func (in *KeyValueSpec) DeepCopy() *KeyValueSpec { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ObjectStore) DeepCopyInto(out *ObjectStore) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) + in.Spec.DeepCopyInto(&out.Spec) + in.Status.DeepCopyInto(&out.Status) + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObjectStore. +func (in *ObjectStore) DeepCopy() *ObjectStore { + if in == nil { + return nil + } + out := new(ObjectStore) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *ObjectStore) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ObjectStoreList) DeepCopyInto(out *ObjectStoreList) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ListMeta.DeepCopyInto(&out.ListMeta) + if in.Items != nil { + in, out := &in.Items, &out.Items + *out = make([]ObjectStore, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObjectStoreList. +func (in *ObjectStoreList) DeepCopy() *ObjectStoreList { + if in == nil { + return nil + } + out := new(ObjectStoreList) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *ObjectStoreList) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ObjectStoreSpec) DeepCopyInto(out *ObjectStoreSpec) { + *out = *in + if in.Placement != nil { + in, out := &in.Placement, &out.Placement + *out = new(StreamPlacement) + (*in).DeepCopyInto(*out) + } + if in.Metadata != nil { + in, out := &in.Metadata, &out.Metadata + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + in.BaseStreamConfig.DeepCopyInto(&out.BaseStreamConfig) + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObjectStoreSpec. +func (in *ObjectStoreSpec) DeepCopy() *ObjectStoreSpec { + if in == nil { + return nil + } + out := new(ObjectStoreSpec) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *RePublish) DeepCopyInto(out *RePublish) { *out = *in @@ -537,37 +660,20 @@ func (in *StreamSource) DeepCopy() *StreamSource { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *StreamSpec) DeepCopyInto(out *StreamSpec) { *out = *in - if in.Mirror != nil { - in, out := &in.Mirror, &out.Mirror - *out = new(StreamSource) - (*in).DeepCopyInto(*out) + if in.Subjects != nil { + in, out := &in.Subjects, &out.Subjects + *out = make([]string, len(*in)) + copy(*out, *in) } if in.Placement != nil { in, out := &in.Placement, &out.Placement *out = new(StreamPlacement) (*in).DeepCopyInto(*out) } - if in.Republish != nil { - in, out := &in.Republish, &out.Republish - *out = new(RePublish) - **out = **in - } - if in.SubjectTransform != nil { - in, out := &in.SubjectTransform, &out.SubjectTransform - *out = new(SubjectTransform) - **out = **in - } - if in.Metadata != nil { - in, out := &in.Metadata, &out.Metadata - *out = make(map[string]string, len(*in)) - for key, val := range *in { - (*out)[key] = val - } - } - if in.Servers != nil { - in, out := &in.Servers, &out.Servers - *out = make([]string, len(*in)) - copy(*out, *in) + if in.Mirror != nil { + in, out := &in.Mirror, &out.Mirror + *out = new(StreamSource) + (*in).DeepCopyInto(*out) } if in.Sources != nil { in, out := &in.Sources, &out.Sources @@ -580,12 +686,29 @@ func (in *StreamSpec) DeepCopyInto(out *StreamSpec) { } } } - if in.Subjects != nil { - in, out := &in.Subjects, &out.Subjects - *out = make([]string, len(*in)) - copy(*out, *in) + if in.SubjectTransform != nil { + in, out := &in.SubjectTransform, &out.SubjectTransform + *out = new(SubjectTransform) + **out = **in } - in.TLS.DeepCopyInto(&out.TLS) + if in.RePublish != nil { + in, out := &in.RePublish, &out.RePublish + *out = new(RePublish) + **out = **in + } + if in.ConsumerLimits != nil { + in, out := &in.ConsumerLimits, &out.ConsumerLimits + *out = new(ConsumerLimits) + **out = **in + } + if in.Metadata != nil { + in, out := &in.Metadata, &out.Metadata + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + in.BaseStreamConfig.DeepCopyInto(&out.BaseStreamConfig) return } diff --git a/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/basestreamconfig.go b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/basestreamconfig.go new file mode 100644 index 00000000..656d1e50 --- /dev/null +++ b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/basestreamconfig.go @@ -0,0 +1,92 @@ +// Copyright 2025 The NATS Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by applyconfiguration-gen. DO NOT EDIT. + +package v1beta2 + +// BaseStreamConfigApplyConfiguration represents a declarative configuration of the BaseStreamConfig type for use +// with apply. +type BaseStreamConfigApplyConfiguration struct { + Account *string `json:"account,omitempty"` + Creds *string `json:"creds,omitempty"` + Nkey *string `json:"nkey,omitempty"` + PreventDelete *bool `json:"preventDelete,omitempty"` + PreventUpdate *bool `json:"preventUpdate,omitempty"` + Servers []string `json:"servers,omitempty"` + TLS *TLSApplyConfiguration `json:"tls,omitempty"` +} + +// BaseStreamConfigApplyConfiguration constructs a declarative configuration of the BaseStreamConfig type for use with +// apply. +func BaseStreamConfig() *BaseStreamConfigApplyConfiguration { + return &BaseStreamConfigApplyConfiguration{} +} + +// WithAccount sets the Account field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Account field is set to the value of the last call. +func (b *BaseStreamConfigApplyConfiguration) WithAccount(value string) *BaseStreamConfigApplyConfiguration { + b.Account = &value + return b +} + +// WithCreds sets the Creds field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Creds field is set to the value of the last call. +func (b *BaseStreamConfigApplyConfiguration) WithCreds(value string) *BaseStreamConfigApplyConfiguration { + b.Creds = &value + return b +} + +// WithNkey sets the Nkey field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Nkey field is set to the value of the last call. +func (b *BaseStreamConfigApplyConfiguration) WithNkey(value string) *BaseStreamConfigApplyConfiguration { + b.Nkey = &value + return b +} + +// WithPreventDelete sets the PreventDelete field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the PreventDelete field is set to the value of the last call. +func (b *BaseStreamConfigApplyConfiguration) WithPreventDelete(value bool) *BaseStreamConfigApplyConfiguration { + b.PreventDelete = &value + return b +} + +// WithPreventUpdate sets the PreventUpdate field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the PreventUpdate field is set to the value of the last call. +func (b *BaseStreamConfigApplyConfiguration) WithPreventUpdate(value bool) *BaseStreamConfigApplyConfiguration { + b.PreventUpdate = &value + return b +} + +// WithServers adds the given value to the Servers field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, values provided by each call will be appended to the Servers field. +func (b *BaseStreamConfigApplyConfiguration) WithServers(values ...string) *BaseStreamConfigApplyConfiguration { + for i := range values { + b.Servers = append(b.Servers, values[i]) + } + return b +} + +// WithTLS sets the TLS field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the TLS field is set to the value of the last call. +func (b *BaseStreamConfigApplyConfiguration) WithTLS(value *TLSApplyConfiguration) *BaseStreamConfigApplyConfiguration { + b.TLS = value + return b +} diff --git a/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/consumerlimits.go b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/consumerlimits.go new file mode 100644 index 00000000..258b6f96 --- /dev/null +++ b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/consumerlimits.go @@ -0,0 +1,45 @@ +// Copyright 2025 The NATS Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by applyconfiguration-gen. DO NOT EDIT. + +package v1beta2 + +// ConsumerLimitsApplyConfiguration represents a declarative configuration of the ConsumerLimits type for use +// with apply. +type ConsumerLimitsApplyConfiguration struct { + InactiveThreshold *string `json:"inactiveThreshold,omitempty"` + MaxAckPending *int `json:"maxAckPending,omitempty"` +} + +// ConsumerLimitsApplyConfiguration constructs a declarative configuration of the ConsumerLimits type for use with +// apply. +func ConsumerLimits() *ConsumerLimitsApplyConfiguration { + return &ConsumerLimitsApplyConfiguration{} +} + +// WithInactiveThreshold sets the InactiveThreshold field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the InactiveThreshold field is set to the value of the last call. +func (b *ConsumerLimitsApplyConfiguration) WithInactiveThreshold(value string) *ConsumerLimitsApplyConfiguration { + b.InactiveThreshold = &value + return b +} + +// WithMaxAckPending sets the MaxAckPending field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the MaxAckPending field is set to the value of the last call. +func (b *ConsumerLimitsApplyConfiguration) WithMaxAckPending(value int) *ConsumerLimitsApplyConfiguration { + b.MaxAckPending = &value + return b +} diff --git a/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/keyvaluespec.go b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/keyvaluespec.go index a35967bf..92cbf75d 100644 --- a/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/keyvaluespec.go +++ b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/keyvaluespec.go @@ -22,26 +22,19 @@ import ( // KeyValueSpecApplyConfiguration represents a declarative configuration of the KeyValueSpec type for use // with apply. type KeyValueSpecApplyConfiguration struct { - Account *string `json:"account,omitempty"` - Compression *bool `json:"compression,omitempty"` - Creds *string `json:"creds,omitempty"` - Description *string `json:"description,omitempty"` - History *int `json:"history,omitempty"` - MaxBytes *int `json:"maxBytes,omitempty"` - MaxValueSize *int `json:"maxValueSize,omitempty"` - Mirror *StreamSourceApplyConfiguration `json:"mirror,omitempty"` - Name *string `json:"name,omitempty"` - Nkey *string `json:"nkey,omitempty"` - Placement *StreamPlacementApplyConfiguration `json:"placement,omitempty"` - PreventDelete *bool `json:"preventDelete,omitempty"` - PreventUpdate *bool `json:"preventUpdate,omitempty"` - Replicas *int `json:"replicas,omitempty"` - Republish *RePublishApplyConfiguration `json:"republish,omitempty"` - Servers []string `json:"servers,omitempty"` - Sources []*jetstreamv1beta2.StreamSource `json:"sources,omitempty"` - Storage *string `json:"storage,omitempty"` - TLS *TLSApplyConfiguration `json:"tls,omitempty"` - TTL *string `json:"ttl,omitempty"` + Bucket *string `json:"bucket,omitempty"` + Description *string `json:"description,omitempty"` + MaxValueSize *int `json:"maxValueSize,omitempty"` + History *int `json:"history,omitempty"` + TTL *string `json:"ttl,omitempty"` + MaxBytes *int `json:"maxBytes,omitempty"` + Storage *string `json:"storage,omitempty"` + Replicas *int `json:"replicas,omitempty"` + Placement *StreamPlacementApplyConfiguration `json:"placement,omitempty"` + RePublish *RePublishApplyConfiguration `json:"republish,omitempty"` + Mirror *StreamSourceApplyConfiguration `json:"mirror,omitempty"` + Sources []*jetstreamv1beta2.StreamSource `json:"sources,omitempty"` + Compression *bool `json:"compression,omitempty"` } // KeyValueSpecApplyConfiguration constructs a declarative configuration of the KeyValueSpec type for use with @@ -50,27 +43,11 @@ func KeyValueSpec() *KeyValueSpecApplyConfiguration { return &KeyValueSpecApplyConfiguration{} } -// WithAccount sets the Account field in the declarative configuration to the given value +// WithBucket sets the Bucket field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Account field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithAccount(value string) *KeyValueSpecApplyConfiguration { - b.Account = &value - return b -} - -// WithCompression sets the Compression field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Compression field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithCompression(value bool) *KeyValueSpecApplyConfiguration { - b.Compression = &value - return b -} - -// WithCreds sets the Creds field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Creds field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithCreds(value string) *KeyValueSpecApplyConfiguration { - b.Creds = &value +// If called multiple times, the Bucket field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithBucket(value string) *KeyValueSpecApplyConfiguration { + b.Bucket = &value return b } @@ -82,22 +59,6 @@ func (b *KeyValueSpecApplyConfiguration) WithDescription(value string) *KeyValue return b } -// WithHistory sets the History field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the History field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithHistory(value int) *KeyValueSpecApplyConfiguration { - b.History = &value - return b -} - -// WithMaxBytes sets the MaxBytes field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the MaxBytes field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithMaxBytes(value int) *KeyValueSpecApplyConfiguration { - b.MaxBytes = &value - return b -} - // WithMaxValueSize sets the MaxValueSize field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. // If called multiple times, the MaxValueSize field is set to the value of the last call. @@ -106,77 +67,67 @@ func (b *KeyValueSpecApplyConfiguration) WithMaxValueSize(value int) *KeyValueSp return b } -// WithMirror sets the Mirror field in the declarative configuration to the given value +// WithHistory sets the History field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Mirror field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithMirror(value *StreamSourceApplyConfiguration) *KeyValueSpecApplyConfiguration { - b.Mirror = value +// If called multiple times, the History field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithHistory(value int) *KeyValueSpecApplyConfiguration { + b.History = &value return b } -// WithName sets the Name field in the declarative configuration to the given value +// WithTTL sets the TTL field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Name field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithName(value string) *KeyValueSpecApplyConfiguration { - b.Name = &value +// If called multiple times, the TTL field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithTTL(value string) *KeyValueSpecApplyConfiguration { + b.TTL = &value return b } -// WithNkey sets the Nkey field in the declarative configuration to the given value +// WithMaxBytes sets the MaxBytes field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Nkey field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithNkey(value string) *KeyValueSpecApplyConfiguration { - b.Nkey = &value +// If called multiple times, the MaxBytes field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithMaxBytes(value int) *KeyValueSpecApplyConfiguration { + b.MaxBytes = &value return b } -// WithPlacement sets the Placement field in the declarative configuration to the given value +// WithStorage sets the Storage field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Placement field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithPlacement(value *StreamPlacementApplyConfiguration) *KeyValueSpecApplyConfiguration { - b.Placement = value +// If called multiple times, the Storage field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithStorage(value string) *KeyValueSpecApplyConfiguration { + b.Storage = &value return b } -// WithPreventDelete sets the PreventDelete field in the declarative configuration to the given value +// WithReplicas sets the Replicas field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the PreventDelete field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithPreventDelete(value bool) *KeyValueSpecApplyConfiguration { - b.PreventDelete = &value +// If called multiple times, the Replicas field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithReplicas(value int) *KeyValueSpecApplyConfiguration { + b.Replicas = &value return b } -// WithPreventUpdate sets the PreventUpdate field in the declarative configuration to the given value +// WithPlacement sets the Placement field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the PreventUpdate field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithPreventUpdate(value bool) *KeyValueSpecApplyConfiguration { - b.PreventUpdate = &value +// If called multiple times, the Placement field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithPlacement(value *StreamPlacementApplyConfiguration) *KeyValueSpecApplyConfiguration { + b.Placement = value return b } -// WithReplicas sets the Replicas field in the declarative configuration to the given value +// WithRePublish sets the RePublish field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Replicas field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithReplicas(value int) *KeyValueSpecApplyConfiguration { - b.Replicas = &value +// If called multiple times, the RePublish field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithRePublish(value *RePublishApplyConfiguration) *KeyValueSpecApplyConfiguration { + b.RePublish = value return b } -// WithRepublish sets the Republish field in the declarative configuration to the given value +// WithMirror sets the Mirror field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Republish field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithRepublish(value *RePublishApplyConfiguration) *KeyValueSpecApplyConfiguration { - b.Republish = value - return b -} - -// WithServers adds the given value to the Servers field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the Servers field. -func (b *KeyValueSpecApplyConfiguration) WithServers(values ...string) *KeyValueSpecApplyConfiguration { - for i := range values { - b.Servers = append(b.Servers, values[i]) - } +// If called multiple times, the Mirror field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithMirror(value *StreamSourceApplyConfiguration) *KeyValueSpecApplyConfiguration { + b.Mirror = value return b } @@ -193,26 +144,10 @@ func (b *KeyValueSpecApplyConfiguration) WithSources(values ...**jetstreamv1beta return b } -// WithStorage sets the Storage field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Storage field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithStorage(value string) *KeyValueSpecApplyConfiguration { - b.Storage = &value - return b -} - -// WithTLS sets the TLS field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the TLS field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithTLS(value *TLSApplyConfiguration) *KeyValueSpecApplyConfiguration { - b.TLS = value - return b -} - -// WithTTL sets the TTL field in the declarative configuration to the given value +// WithCompression sets the Compression field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the TTL field is set to the value of the last call. -func (b *KeyValueSpecApplyConfiguration) WithTTL(value string) *KeyValueSpecApplyConfiguration { - b.TTL = &value +// If called multiple times, the Compression field is set to the value of the last call. +func (b *KeyValueSpecApplyConfiguration) WithCompression(value bool) *KeyValueSpecApplyConfiguration { + b.Compression = &value return b } diff --git a/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstore.go b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstore.go new file mode 100644 index 00000000..c0ea3663 --- /dev/null +++ b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstore.go @@ -0,0 +1,222 @@ +// Copyright 2025 The NATS Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by applyconfiguration-gen. DO NOT EDIT. + +package v1beta2 + +import ( + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + types "k8s.io/apimachinery/pkg/types" + v1 "k8s.io/client-go/applyconfigurations/meta/v1" +) + +// ObjectStoreApplyConfiguration represents a declarative configuration of the ObjectStore type for use +// with apply. +type ObjectStoreApplyConfiguration struct { + v1.TypeMetaApplyConfiguration `json:",inline"` + *v1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"` + Spec *ObjectStoreSpecApplyConfiguration `json:"spec,omitempty"` + Status *StatusApplyConfiguration `json:"status,omitempty"` +} + +// ObjectStore constructs a declarative configuration of the ObjectStore type for use with +// apply. +func ObjectStore(name, namespace string) *ObjectStoreApplyConfiguration { + b := &ObjectStoreApplyConfiguration{} + b.WithName(name) + b.WithNamespace(namespace) + b.WithKind("ObjectStore") + b.WithAPIVersion("jetstream.nats.io/v1beta2") + return b +} + +// WithKind sets the Kind field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Kind field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithKind(value string) *ObjectStoreApplyConfiguration { + b.TypeMetaApplyConfiguration.Kind = &value + return b +} + +// WithAPIVersion sets the APIVersion field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the APIVersion field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithAPIVersion(value string) *ObjectStoreApplyConfiguration { + b.TypeMetaApplyConfiguration.APIVersion = &value + return b +} + +// WithName sets the Name field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Name field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithName(value string) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + b.ObjectMetaApplyConfiguration.Name = &value + return b +} + +// WithGenerateName sets the GenerateName field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the GenerateName field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithGenerateName(value string) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + b.ObjectMetaApplyConfiguration.GenerateName = &value + return b +} + +// WithNamespace sets the Namespace field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Namespace field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithNamespace(value string) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + b.ObjectMetaApplyConfiguration.Namespace = &value + return b +} + +// WithUID sets the UID field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the UID field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithUID(value types.UID) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + b.ObjectMetaApplyConfiguration.UID = &value + return b +} + +// WithResourceVersion sets the ResourceVersion field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the ResourceVersion field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithResourceVersion(value string) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + b.ObjectMetaApplyConfiguration.ResourceVersion = &value + return b +} + +// WithGeneration sets the Generation field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Generation field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithGeneration(value int64) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + b.ObjectMetaApplyConfiguration.Generation = &value + return b +} + +// WithCreationTimestamp sets the CreationTimestamp field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the CreationTimestamp field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithCreationTimestamp(value metav1.Time) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + b.ObjectMetaApplyConfiguration.CreationTimestamp = &value + return b +} + +// WithDeletionTimestamp sets the DeletionTimestamp field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the DeletionTimestamp field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithDeletionTimestamp(value metav1.Time) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + b.ObjectMetaApplyConfiguration.DeletionTimestamp = &value + return b +} + +// WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the DeletionGracePeriodSeconds field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + b.ObjectMetaApplyConfiguration.DeletionGracePeriodSeconds = &value + return b +} + +// WithLabels puts the entries into the Labels field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, the entries provided by each call will be put on the Labels field, +// overwriting an existing map entries in Labels field with the same key. +func (b *ObjectStoreApplyConfiguration) WithLabels(entries map[string]string) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + if b.ObjectMetaApplyConfiguration.Labels == nil && len(entries) > 0 { + b.ObjectMetaApplyConfiguration.Labels = make(map[string]string, len(entries)) + } + for k, v := range entries { + b.ObjectMetaApplyConfiguration.Labels[k] = v + } + return b +} + +// WithAnnotations puts the entries into the Annotations field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, the entries provided by each call will be put on the Annotations field, +// overwriting an existing map entries in Annotations field with the same key. +func (b *ObjectStoreApplyConfiguration) WithAnnotations(entries map[string]string) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + if b.ObjectMetaApplyConfiguration.Annotations == nil && len(entries) > 0 { + b.ObjectMetaApplyConfiguration.Annotations = make(map[string]string, len(entries)) + } + for k, v := range entries { + b.ObjectMetaApplyConfiguration.Annotations[k] = v + } + return b +} + +// WithOwnerReferences adds the given value to the OwnerReferences field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, values provided by each call will be appended to the OwnerReferences field. +func (b *ObjectStoreApplyConfiguration) WithOwnerReferences(values ...*v1.OwnerReferenceApplyConfiguration) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + for i := range values { + if values[i] == nil { + panic("nil value passed to WithOwnerReferences") + } + b.ObjectMetaApplyConfiguration.OwnerReferences = append(b.ObjectMetaApplyConfiguration.OwnerReferences, *values[i]) + } + return b +} + +// WithFinalizers adds the given value to the Finalizers field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, values provided by each call will be appended to the Finalizers field. +func (b *ObjectStoreApplyConfiguration) WithFinalizers(values ...string) *ObjectStoreApplyConfiguration { + b.ensureObjectMetaApplyConfigurationExists() + for i := range values { + b.ObjectMetaApplyConfiguration.Finalizers = append(b.ObjectMetaApplyConfiguration.Finalizers, values[i]) + } + return b +} + +func (b *ObjectStoreApplyConfiguration) ensureObjectMetaApplyConfigurationExists() { + if b.ObjectMetaApplyConfiguration == nil { + b.ObjectMetaApplyConfiguration = &v1.ObjectMetaApplyConfiguration{} + } +} + +// WithSpec sets the Spec field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Spec field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithSpec(value *ObjectStoreSpecApplyConfiguration) *ObjectStoreApplyConfiguration { + b.Spec = value + return b +} + +// WithStatus sets the Status field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Status field is set to the value of the last call. +func (b *ObjectStoreApplyConfiguration) WithStatus(value *StatusApplyConfiguration) *ObjectStoreApplyConfiguration { + b.Status = value + return b +} + +// GetName retrieves the value of the Name field in the declarative configuration. +func (b *ObjectStoreApplyConfiguration) GetName() *string { + b.ensureObjectMetaApplyConfigurationExists() + return b.ObjectMetaApplyConfiguration.Name +} diff --git a/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstorespec.go b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstorespec.go new file mode 100644 index 00000000..0b9fc683 --- /dev/null +++ b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/objectstorespec.go @@ -0,0 +1,114 @@ +// Copyright 2025 The NATS Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by applyconfiguration-gen. DO NOT EDIT. + +package v1beta2 + +// ObjectStoreSpecApplyConfiguration represents a declarative configuration of the ObjectStoreSpec type for use +// with apply. +type ObjectStoreSpecApplyConfiguration struct { + Bucket *string `json:"bucket,omitempty"` + Description *string `json:"description,omitempty"` + TTL *string `json:"ttl,omitempty"` + MaxBytes *int `json:"maxBytes,omitempty"` + Storage *string `json:"storage,omitempty"` + Replicas *int `json:"replicas,omitempty"` + Placement *StreamPlacementApplyConfiguration `json:"placement,omitempty"` + Compression *bool `json:"compression,omitempty"` + Metadata map[string]string `json:"metadata,omitempty"` +} + +// ObjectStoreSpecApplyConfiguration constructs a declarative configuration of the ObjectStoreSpec type for use with +// apply. +func ObjectStoreSpec() *ObjectStoreSpecApplyConfiguration { + return &ObjectStoreSpecApplyConfiguration{} +} + +// WithBucket sets the Bucket field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Bucket field is set to the value of the last call. +func (b *ObjectStoreSpecApplyConfiguration) WithBucket(value string) *ObjectStoreSpecApplyConfiguration { + b.Bucket = &value + return b +} + +// WithDescription sets the Description field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Description field is set to the value of the last call. +func (b *ObjectStoreSpecApplyConfiguration) WithDescription(value string) *ObjectStoreSpecApplyConfiguration { + b.Description = &value + return b +} + +// WithTTL sets the TTL field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the TTL field is set to the value of the last call. +func (b *ObjectStoreSpecApplyConfiguration) WithTTL(value string) *ObjectStoreSpecApplyConfiguration { + b.TTL = &value + return b +} + +// WithMaxBytes sets the MaxBytes field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the MaxBytes field is set to the value of the last call. +func (b *ObjectStoreSpecApplyConfiguration) WithMaxBytes(value int) *ObjectStoreSpecApplyConfiguration { + b.MaxBytes = &value + return b +} + +// WithStorage sets the Storage field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Storage field is set to the value of the last call. +func (b *ObjectStoreSpecApplyConfiguration) WithStorage(value string) *ObjectStoreSpecApplyConfiguration { + b.Storage = &value + return b +} + +// WithReplicas sets the Replicas field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Replicas field is set to the value of the last call. +func (b *ObjectStoreSpecApplyConfiguration) WithReplicas(value int) *ObjectStoreSpecApplyConfiguration { + b.Replicas = &value + return b +} + +// WithPlacement sets the Placement field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Placement field is set to the value of the last call. +func (b *ObjectStoreSpecApplyConfiguration) WithPlacement(value *StreamPlacementApplyConfiguration) *ObjectStoreSpecApplyConfiguration { + b.Placement = value + return b +} + +// WithCompression sets the Compression field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the Compression field is set to the value of the last call. +func (b *ObjectStoreSpecApplyConfiguration) WithCompression(value bool) *ObjectStoreSpecApplyConfiguration { + b.Compression = &value + return b +} + +// WithMetadata puts the entries into the Metadata field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, the entries provided by each call will be put on the Metadata field, +// overwriting an existing map entries in Metadata field with the same key. +func (b *ObjectStoreSpecApplyConfiguration) WithMetadata(entries map[string]string) *ObjectStoreSpecApplyConfiguration { + if b.Metadata == nil && len(entries) > 0 { + b.Metadata = make(map[string]string, len(entries)) + } + for k, v := range entries { + b.Metadata[k] = v + } + return b +} diff --git a/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/streamspec.go b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/streamspec.go index 608a118d..1831f3de 100644 --- a/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/streamspec.go +++ b/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2/streamspec.go @@ -22,41 +22,37 @@ import ( // StreamSpecApplyConfiguration represents a declarative configuration of the StreamSpec type for use // with apply. type StreamSpecApplyConfiguration struct { - Account *string `json:"account,omitempty"` - AllowDirect *bool `json:"allowDirect,omitempty"` - AllowRollup *bool `json:"allowRollup,omitempty"` - Creds *string `json:"creds,omitempty"` - DenyDelete *bool `json:"denyDelete,omitempty"` - DenyPurge *bool `json:"denyPurge,omitempty"` + Name *string `json:"name,omitempty"` Description *string `json:"description,omitempty"` - DiscardPerSubject *bool `json:"discardPerSubject,omitempty"` - PreventDelete *bool `json:"preventDelete,omitempty"` - PreventUpdate *bool `json:"preventUpdate,omitempty"` - Discard *string `json:"discard,omitempty"` - DuplicateWindow *string `json:"duplicateWindow,omitempty"` - MaxAge *string `json:"maxAge,omitempty"` - MaxBytes *int `json:"maxBytes,omitempty"` + Subjects []string `json:"subjects,omitempty"` + Retention *string `json:"retention,omitempty"` MaxConsumers *int `json:"maxConsumers,omitempty"` MaxMsgs *int `json:"maxMsgs,omitempty"` - MaxMsgSize *int `json:"maxMsgSize,omitempty"` + MaxBytes *int `json:"maxBytes,omitempty"` + Discard *string `json:"discard,omitempty"` + DiscardPerSubject *bool `json:"discardPerSubject,omitempty"` + MaxAge *string `json:"maxAge,omitempty"` MaxMsgsPerSubject *int `json:"maxMsgsPerSubject,omitempty"` - Mirror *StreamSourceApplyConfiguration `json:"mirror,omitempty"` - Name *string `json:"name,omitempty"` - Nkey *string `json:"nkey,omitempty"` + MaxMsgSize *int `json:"maxMsgSize,omitempty"` + Storage *string `json:"storage,omitempty"` + Replicas *int `json:"replicas,omitempty"` NoAck *bool `json:"noAck,omitempty"` + DuplicateWindow *string `json:"duplicateWindow,omitempty"` Placement *StreamPlacementApplyConfiguration `json:"placement,omitempty"` - Replicas *int `json:"replicas,omitempty"` - Republish *RePublishApplyConfiguration `json:"republish,omitempty"` - SubjectTransform *SubjectTransformApplyConfiguration `json:"subjectTransform,omitempty"` - FirstSequence *uint64 `json:"firstSequence,omitempty"` + Mirror *StreamSourceApplyConfiguration `json:"mirror,omitempty"` + Sources []*jetstreamv1beta2.StreamSource `json:"sources,omitempty"` + Sealed *bool `json:"sealed,omitempty"` + DenyDelete *bool `json:"denyDelete,omitempty"` + DenyPurge *bool `json:"denyPurge,omitempty"` + AllowRollup *bool `json:"allowRollup,omitempty"` Compression *string `json:"compression,omitempty"` + FirstSequence *uint64 `json:"firstSequence,omitempty"` + SubjectTransform *SubjectTransformApplyConfiguration `json:"subjectTransform,omitempty"` + RePublish *RePublishApplyConfiguration `json:"republish,omitempty"` + AllowDirect *bool `json:"allowDirect,omitempty"` + MirrorDirect *bool `json:"mirrorDirect,omitempty"` + ConsumerLimits *ConsumerLimitsApplyConfiguration `json:"consumerLimits,omitempty"` Metadata map[string]string `json:"metadata,omitempty"` - Retention *string `json:"retention,omitempty"` - Servers []string `json:"servers,omitempty"` - Sources []*jetstreamv1beta2.StreamSource `json:"sources,omitempty"` - Storage *string `json:"storage,omitempty"` - Subjects []string `json:"subjects,omitempty"` - TLS *TLSApplyConfiguration `json:"tls,omitempty"` } // StreamSpecApplyConfiguration constructs a declarative configuration of the StreamSpec type for use with @@ -65,51 +61,11 @@ func StreamSpec() *StreamSpecApplyConfiguration { return &StreamSpecApplyConfiguration{} } -// WithAccount sets the Account field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Account field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithAccount(value string) *StreamSpecApplyConfiguration { - b.Account = &value - return b -} - -// WithAllowDirect sets the AllowDirect field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the AllowDirect field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithAllowDirect(value bool) *StreamSpecApplyConfiguration { - b.AllowDirect = &value - return b -} - -// WithAllowRollup sets the AllowRollup field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the AllowRollup field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithAllowRollup(value bool) *StreamSpecApplyConfiguration { - b.AllowRollup = &value - return b -} - -// WithCreds sets the Creds field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Creds field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithCreds(value string) *StreamSpecApplyConfiguration { - b.Creds = &value - return b -} - -// WithDenyDelete sets the DenyDelete field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DenyDelete field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithDenyDelete(value bool) *StreamSpecApplyConfiguration { - b.DenyDelete = &value - return b -} - -// WithDenyPurge sets the DenyPurge field in the declarative configuration to the given value +// WithName sets the Name field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DenyPurge field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithDenyPurge(value bool) *StreamSpecApplyConfiguration { - b.DenyPurge = &value +// If called multiple times, the Name field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithName(value string) *StreamSpecApplyConfiguration { + b.Name = &value return b } @@ -121,51 +77,37 @@ func (b *StreamSpecApplyConfiguration) WithDescription(value string) *StreamSpec return b } -// WithDiscardPerSubject sets the DiscardPerSubject field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DiscardPerSubject field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithDiscardPerSubject(value bool) *StreamSpecApplyConfiguration { - b.DiscardPerSubject = &value - return b -} - -// WithPreventDelete sets the PreventDelete field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the PreventDelete field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithPreventDelete(value bool) *StreamSpecApplyConfiguration { - b.PreventDelete = &value - return b -} - -// WithPreventUpdate sets the PreventUpdate field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the PreventUpdate field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithPreventUpdate(value bool) *StreamSpecApplyConfiguration { - b.PreventUpdate = &value +// WithSubjects adds the given value to the Subjects field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, values provided by each call will be appended to the Subjects field. +func (b *StreamSpecApplyConfiguration) WithSubjects(values ...string) *StreamSpecApplyConfiguration { + for i := range values { + b.Subjects = append(b.Subjects, values[i]) + } return b } -// WithDiscard sets the Discard field in the declarative configuration to the given value +// WithRetention sets the Retention field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Discard field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithDiscard(value string) *StreamSpecApplyConfiguration { - b.Discard = &value +// If called multiple times, the Retention field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithRetention(value string) *StreamSpecApplyConfiguration { + b.Retention = &value return b } -// WithDuplicateWindow sets the DuplicateWindow field in the declarative configuration to the given value +// WithMaxConsumers sets the MaxConsumers field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DuplicateWindow field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithDuplicateWindow(value string) *StreamSpecApplyConfiguration { - b.DuplicateWindow = &value +// If called multiple times, the MaxConsumers field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithMaxConsumers(value int) *StreamSpecApplyConfiguration { + b.MaxConsumers = &value return b } -// WithMaxAge sets the MaxAge field in the declarative configuration to the given value +// WithMaxMsgs sets the MaxMsgs field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the MaxAge field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithMaxAge(value string) *StreamSpecApplyConfiguration { - b.MaxAge = &value +// If called multiple times, the MaxMsgs field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithMaxMsgs(value int) *StreamSpecApplyConfiguration { + b.MaxMsgs = &value return b } @@ -177,27 +119,27 @@ func (b *StreamSpecApplyConfiguration) WithMaxBytes(value int) *StreamSpecApplyC return b } -// WithMaxConsumers sets the MaxConsumers field in the declarative configuration to the given value +// WithDiscard sets the Discard field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the MaxConsumers field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithMaxConsumers(value int) *StreamSpecApplyConfiguration { - b.MaxConsumers = &value +// If called multiple times, the Discard field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithDiscard(value string) *StreamSpecApplyConfiguration { + b.Discard = &value return b } -// WithMaxMsgs sets the MaxMsgs field in the declarative configuration to the given value +// WithDiscardPerSubject sets the DiscardPerSubject field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the MaxMsgs field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithMaxMsgs(value int) *StreamSpecApplyConfiguration { - b.MaxMsgs = &value +// If called multiple times, the DiscardPerSubject field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithDiscardPerSubject(value bool) *StreamSpecApplyConfiguration { + b.DiscardPerSubject = &value return b } -// WithMaxMsgSize sets the MaxMsgSize field in the declarative configuration to the given value +// WithMaxAge sets the MaxAge field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the MaxMsgSize field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithMaxMsgSize(value int) *StreamSpecApplyConfiguration { - b.MaxMsgSize = &value +// If called multiple times, the MaxAge field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithMaxAge(value string) *StreamSpecApplyConfiguration { + b.MaxAge = &value return b } @@ -209,27 +151,27 @@ func (b *StreamSpecApplyConfiguration) WithMaxMsgsPerSubject(value int) *StreamS return b } -// WithMirror sets the Mirror field in the declarative configuration to the given value +// WithMaxMsgSize sets the MaxMsgSize field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Mirror field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithMirror(value *StreamSourceApplyConfiguration) *StreamSpecApplyConfiguration { - b.Mirror = value +// If called multiple times, the MaxMsgSize field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithMaxMsgSize(value int) *StreamSpecApplyConfiguration { + b.MaxMsgSize = &value return b } -// WithName sets the Name field in the declarative configuration to the given value +// WithStorage sets the Storage field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Name field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithName(value string) *StreamSpecApplyConfiguration { - b.Name = &value +// If called multiple times, the Storage field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithStorage(value string) *StreamSpecApplyConfiguration { + b.Storage = &value return b } -// WithNkey sets the Nkey field in the declarative configuration to the given value +// WithReplicas sets the Replicas field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Nkey field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithNkey(value string) *StreamSpecApplyConfiguration { - b.Nkey = &value +// If called multiple times, the Replicas field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithReplicas(value int) *StreamSpecApplyConfiguration { + b.Replicas = &value return b } @@ -241,6 +183,14 @@ func (b *StreamSpecApplyConfiguration) WithNoAck(value bool) *StreamSpecApplyCon return b } +// WithDuplicateWindow sets the DuplicateWindow field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the DuplicateWindow field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithDuplicateWindow(value string) *StreamSpecApplyConfiguration { + b.DuplicateWindow = &value + return b +} + // WithPlacement sets the Placement field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. // If called multiple times, the Placement field is set to the value of the last call. @@ -249,35 +199,56 @@ func (b *StreamSpecApplyConfiguration) WithPlacement(value *StreamPlacementApply return b } -// WithReplicas sets the Replicas field in the declarative configuration to the given value +// WithMirror sets the Mirror field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Replicas field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithReplicas(value int) *StreamSpecApplyConfiguration { - b.Replicas = &value +// If called multiple times, the Mirror field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithMirror(value *StreamSourceApplyConfiguration) *StreamSpecApplyConfiguration { + b.Mirror = value + return b +} + +// WithSources adds the given value to the Sources field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, values provided by each call will be appended to the Sources field. +func (b *StreamSpecApplyConfiguration) WithSources(values ...**jetstreamv1beta2.StreamSource) *StreamSpecApplyConfiguration { + for i := range values { + if values[i] == nil { + panic("nil value passed to WithSources") + } + b.Sources = append(b.Sources, *values[i]) + } return b } -// WithRepublish sets the Republish field in the declarative configuration to the given value +// WithSealed sets the Sealed field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Republish field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithRepublish(value *RePublishApplyConfiguration) *StreamSpecApplyConfiguration { - b.Republish = value +// If called multiple times, the Sealed field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithSealed(value bool) *StreamSpecApplyConfiguration { + b.Sealed = &value return b } -// WithSubjectTransform sets the SubjectTransform field in the declarative configuration to the given value +// WithDenyDelete sets the DenyDelete field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the SubjectTransform field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithSubjectTransform(value *SubjectTransformApplyConfiguration) *StreamSpecApplyConfiguration { - b.SubjectTransform = value +// If called multiple times, the DenyDelete field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithDenyDelete(value bool) *StreamSpecApplyConfiguration { + b.DenyDelete = &value return b } -// WithFirstSequence sets the FirstSequence field in the declarative configuration to the given value +// WithDenyPurge sets the DenyPurge field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the FirstSequence field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithFirstSequence(value uint64) *StreamSpecApplyConfiguration { - b.FirstSequence = &value +// If called multiple times, the DenyPurge field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithDenyPurge(value bool) *StreamSpecApplyConfiguration { + b.DenyPurge = &value + return b +} + +// WithAllowRollup sets the AllowRollup field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the AllowRollup field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithAllowRollup(value bool) *StreamSpecApplyConfiguration { + b.AllowRollup = &value return b } @@ -289,73 +260,64 @@ func (b *StreamSpecApplyConfiguration) WithCompression(value string) *StreamSpec return b } -// WithMetadata puts the entries into the Metadata field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, the entries provided by each call will be put on the Metadata field, -// overwriting an existing map entries in Metadata field with the same key. -func (b *StreamSpecApplyConfiguration) WithMetadata(entries map[string]string) *StreamSpecApplyConfiguration { - if b.Metadata == nil && len(entries) > 0 { - b.Metadata = make(map[string]string, len(entries)) - } - for k, v := range entries { - b.Metadata[k] = v - } +// WithFirstSequence sets the FirstSequence field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the FirstSequence field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithFirstSequence(value uint64) *StreamSpecApplyConfiguration { + b.FirstSequence = &value return b } -// WithRetention sets the Retention field in the declarative configuration to the given value +// WithSubjectTransform sets the SubjectTransform field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Retention field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithRetention(value string) *StreamSpecApplyConfiguration { - b.Retention = &value +// If called multiple times, the SubjectTransform field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithSubjectTransform(value *SubjectTransformApplyConfiguration) *StreamSpecApplyConfiguration { + b.SubjectTransform = value return b } -// WithServers adds the given value to the Servers field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the Servers field. -func (b *StreamSpecApplyConfiguration) WithServers(values ...string) *StreamSpecApplyConfiguration { - for i := range values { - b.Servers = append(b.Servers, values[i]) - } +// WithRePublish sets the RePublish field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the RePublish field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithRePublish(value *RePublishApplyConfiguration) *StreamSpecApplyConfiguration { + b.RePublish = value return b } -// WithSources adds the given value to the Sources field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the Sources field. -func (b *StreamSpecApplyConfiguration) WithSources(values ...**jetstreamv1beta2.StreamSource) *StreamSpecApplyConfiguration { - for i := range values { - if values[i] == nil { - panic("nil value passed to WithSources") - } - b.Sources = append(b.Sources, *values[i]) - } +// WithAllowDirect sets the AllowDirect field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the AllowDirect field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithAllowDirect(value bool) *StreamSpecApplyConfiguration { + b.AllowDirect = &value return b } -// WithStorage sets the Storage field in the declarative configuration to the given value +// WithMirrorDirect sets the MirrorDirect field in the declarative configuration to the given value // and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Storage field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithStorage(value string) *StreamSpecApplyConfiguration { - b.Storage = &value +// If called multiple times, the MirrorDirect field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithMirrorDirect(value bool) *StreamSpecApplyConfiguration { + b.MirrorDirect = &value return b } -// WithSubjects adds the given value to the Subjects field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the Subjects field. -func (b *StreamSpecApplyConfiguration) WithSubjects(values ...string) *StreamSpecApplyConfiguration { - for i := range values { - b.Subjects = append(b.Subjects, values[i]) - } +// WithConsumerLimits sets the ConsumerLimits field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the ConsumerLimits field is set to the value of the last call. +func (b *StreamSpecApplyConfiguration) WithConsumerLimits(value *ConsumerLimitsApplyConfiguration) *StreamSpecApplyConfiguration { + b.ConsumerLimits = value return b } -// WithTLS sets the TLS field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the TLS field is set to the value of the last call. -func (b *StreamSpecApplyConfiguration) WithTLS(value *TLSApplyConfiguration) *StreamSpecApplyConfiguration { - b.TLS = value +// WithMetadata puts the entries into the Metadata field in the declarative configuration +// and returns the receiver, so that objects can be build by chaining "With" function invocations. +// If called multiple times, the entries provided by each call will be put on the Metadata field, +// overwriting an existing map entries in Metadata field with the same key. +func (b *StreamSpecApplyConfiguration) WithMetadata(entries map[string]string) *StreamSpecApplyConfiguration { + if b.Metadata == nil && len(entries) > 0 { + b.Metadata = make(map[string]string, len(entries)) + } + for k, v := range entries { + b.Metadata[k] = v + } return b } diff --git a/pkg/jetstream/generated/applyconfiguration/utils.go b/pkg/jetstream/generated/applyconfiguration/utils.go index f641a5b4..4278139e 100644 --- a/pkg/jetstream/generated/applyconfiguration/utils.go +++ b/pkg/jetstream/generated/applyconfiguration/utils.go @@ -33,10 +33,14 @@ func ForKind(kind schema.GroupVersionKind) interface{} { return &jetstreamv1beta2.AccountApplyConfiguration{} case v1beta2.SchemeGroupVersion.WithKind("AccountSpec"): return &jetstreamv1beta2.AccountSpecApplyConfiguration{} + case v1beta2.SchemeGroupVersion.WithKind("BaseStreamConfig"): + return &jetstreamv1beta2.BaseStreamConfigApplyConfiguration{} case v1beta2.SchemeGroupVersion.WithKind("Condition"): return &jetstreamv1beta2.ConditionApplyConfiguration{} case v1beta2.SchemeGroupVersion.WithKind("Consumer"): return &jetstreamv1beta2.ConsumerApplyConfiguration{} + case v1beta2.SchemeGroupVersion.WithKind("ConsumerLimits"): + return &jetstreamv1beta2.ConsumerLimitsApplyConfiguration{} case v1beta2.SchemeGroupVersion.WithKind("ConsumerSpec"): return &jetstreamv1beta2.ConsumerSpecApplyConfiguration{} case v1beta2.SchemeGroupVersion.WithKind("CredsSecret"): @@ -45,6 +49,10 @@ func ForKind(kind schema.GroupVersionKind) interface{} { return &jetstreamv1beta2.KeyValueApplyConfiguration{} case v1beta2.SchemeGroupVersion.WithKind("KeyValueSpec"): return &jetstreamv1beta2.KeyValueSpecApplyConfiguration{} + case v1beta2.SchemeGroupVersion.WithKind("ObjectStore"): + return &jetstreamv1beta2.ObjectStoreApplyConfiguration{} + case v1beta2.SchemeGroupVersion.WithKind("ObjectStoreSpec"): + return &jetstreamv1beta2.ObjectStoreSpecApplyConfiguration{} case v1beta2.SchemeGroupVersion.WithKind("RePublish"): return &jetstreamv1beta2.RePublishApplyConfiguration{} case v1beta2.SchemeGroupVersion.WithKind("SecretRef"): diff --git a/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_jetstream_client.go b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_jetstream_client.go index 7eec1be1..d8df64c3 100644 --- a/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_jetstream_client.go +++ b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_jetstream_client.go @@ -37,6 +37,10 @@ func (c *FakeJetstreamV1beta2) KeyValues(namespace string) v1beta2.KeyValueInter return newFakeKeyValues(c, namespace) } +func (c *FakeJetstreamV1beta2) ObjectStores(namespace string) v1beta2.ObjectStoreInterface { + return newFakeObjectStores(c, namespace) +} + func (c *FakeJetstreamV1beta2) Streams(namespace string) v1beta2.StreamInterface { return newFakeStreams(c, namespace) } diff --git a/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_objectstore.go b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_objectstore.go new file mode 100644 index 00000000..4a837f69 --- /dev/null +++ b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/fake/fake_objectstore.go @@ -0,0 +1,48 @@ +// Copyright 2025 The NATS Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by client-gen. DO NOT EDIT. + +package fake + +import ( + v1beta2 "github.com/nats-io/nack/pkg/jetstream/apis/jetstream/v1beta2" + jetstreamv1beta2 "github.com/nats-io/nack/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2" + typedjetstreamv1beta2 "github.com/nats-io/nack/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2" + gentype "k8s.io/client-go/gentype" +) + +// fakeObjectStores implements ObjectStoreInterface +type fakeObjectStores struct { + *gentype.FakeClientWithListAndApply[*v1beta2.ObjectStore, *v1beta2.ObjectStoreList, *jetstreamv1beta2.ObjectStoreApplyConfiguration] + Fake *FakeJetstreamV1beta2 +} + +func newFakeObjectStores(fake *FakeJetstreamV1beta2, namespace string) typedjetstreamv1beta2.ObjectStoreInterface { + return &fakeObjectStores{ + gentype.NewFakeClientWithListAndApply[*v1beta2.ObjectStore, *v1beta2.ObjectStoreList, *jetstreamv1beta2.ObjectStoreApplyConfiguration]( + fake.Fake, + namespace, + v1beta2.SchemeGroupVersion.WithResource("objectstores"), + v1beta2.SchemeGroupVersion.WithKind("ObjectStore"), + func() *v1beta2.ObjectStore { return &v1beta2.ObjectStore{} }, + func() *v1beta2.ObjectStoreList { return &v1beta2.ObjectStoreList{} }, + func(dst, src *v1beta2.ObjectStoreList) { dst.ListMeta = src.ListMeta }, + func(list *v1beta2.ObjectStoreList) []*v1beta2.ObjectStore { return gentype.ToPointerSlice(list.Items) }, + func(list *v1beta2.ObjectStoreList, items []*v1beta2.ObjectStore) { + list.Items = gentype.FromPointerSlice(items) + }, + ), + fake, + } +} diff --git a/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/generated_expansion.go b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/generated_expansion.go index 97b76f2e..31400b17 100644 --- a/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/generated_expansion.go +++ b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/generated_expansion.go @@ -21,4 +21,6 @@ type ConsumerExpansion interface{} type KeyValueExpansion interface{} +type ObjectStoreExpansion interface{} + type StreamExpansion interface{} diff --git a/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/jetstream_client.go b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/jetstream_client.go index c18538bb..18411e7b 100644 --- a/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/jetstream_client.go +++ b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/jetstream_client.go @@ -28,6 +28,7 @@ type JetstreamV1beta2Interface interface { AccountsGetter ConsumersGetter KeyValuesGetter + ObjectStoresGetter StreamsGetter } @@ -48,6 +49,10 @@ func (c *JetstreamV1beta2Client) KeyValues(namespace string) KeyValueInterface { return newKeyValues(c, namespace) } +func (c *JetstreamV1beta2Client) ObjectStores(namespace string) ObjectStoreInterface { + return newObjectStores(c, namespace) +} + func (c *JetstreamV1beta2Client) Streams(namespace string) StreamInterface { return newStreams(c, namespace) } diff --git a/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/objectstore.go b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/objectstore.go new file mode 100644 index 00000000..d69b2d3c --- /dev/null +++ b/pkg/jetstream/generated/clientset/versioned/typed/jetstream/v1beta2/objectstore.go @@ -0,0 +1,71 @@ +// Copyright 2025 The NATS Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by client-gen. DO NOT EDIT. + +package v1beta2 + +import ( + context "context" + + jetstreamv1beta2 "github.com/nats-io/nack/pkg/jetstream/apis/jetstream/v1beta2" + applyconfigurationjetstreamv1beta2 "github.com/nats-io/nack/pkg/jetstream/generated/applyconfiguration/jetstream/v1beta2" + scheme "github.com/nats-io/nack/pkg/jetstream/generated/clientset/versioned/scheme" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + types "k8s.io/apimachinery/pkg/types" + watch "k8s.io/apimachinery/pkg/watch" + gentype "k8s.io/client-go/gentype" +) + +// ObjectStoresGetter has a method to return a ObjectStoreInterface. +// A group's client should implement this interface. +type ObjectStoresGetter interface { + ObjectStores(namespace string) ObjectStoreInterface +} + +// ObjectStoreInterface has methods to work with ObjectStore resources. +type ObjectStoreInterface interface { + Create(ctx context.Context, objectStore *jetstreamv1beta2.ObjectStore, opts v1.CreateOptions) (*jetstreamv1beta2.ObjectStore, error) + Update(ctx context.Context, objectStore *jetstreamv1beta2.ObjectStore, opts v1.UpdateOptions) (*jetstreamv1beta2.ObjectStore, error) + // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus(). + UpdateStatus(ctx context.Context, objectStore *jetstreamv1beta2.ObjectStore, opts v1.UpdateOptions) (*jetstreamv1beta2.ObjectStore, error) + Delete(ctx context.Context, name string, opts v1.DeleteOptions) error + DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error + Get(ctx context.Context, name string, opts v1.GetOptions) (*jetstreamv1beta2.ObjectStore, error) + List(ctx context.Context, opts v1.ListOptions) (*jetstreamv1beta2.ObjectStoreList, error) + Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) + Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *jetstreamv1beta2.ObjectStore, err error) + Apply(ctx context.Context, objectStore *applyconfigurationjetstreamv1beta2.ObjectStoreApplyConfiguration, opts v1.ApplyOptions) (result *jetstreamv1beta2.ObjectStore, err error) + // Add a +genclient:noStatus comment above the type to avoid generating ApplyStatus(). + ApplyStatus(ctx context.Context, objectStore *applyconfigurationjetstreamv1beta2.ObjectStoreApplyConfiguration, opts v1.ApplyOptions) (result *jetstreamv1beta2.ObjectStore, err error) + ObjectStoreExpansion +} + +// objectStores implements ObjectStoreInterface +type objectStores struct { + *gentype.ClientWithListAndApply[*jetstreamv1beta2.ObjectStore, *jetstreamv1beta2.ObjectStoreList, *applyconfigurationjetstreamv1beta2.ObjectStoreApplyConfiguration] +} + +// newObjectStores returns a ObjectStores +func newObjectStores(c *JetstreamV1beta2Client, namespace string) *objectStores { + return &objectStores{ + gentype.NewClientWithListAndApply[*jetstreamv1beta2.ObjectStore, *jetstreamv1beta2.ObjectStoreList, *applyconfigurationjetstreamv1beta2.ObjectStoreApplyConfiguration]( + "objectstores", + c.RESTClient(), + scheme.ParameterCodec, + namespace, + func() *jetstreamv1beta2.ObjectStore { return &jetstreamv1beta2.ObjectStore{} }, + func() *jetstreamv1beta2.ObjectStoreList { return &jetstreamv1beta2.ObjectStoreList{} }, + ), + } +} diff --git a/pkg/jetstream/generated/informers/externalversions/generic.go b/pkg/jetstream/generated/informers/externalversions/generic.go index b03765d4..9ef89d85 100644 --- a/pkg/jetstream/generated/informers/externalversions/generic.go +++ b/pkg/jetstream/generated/informers/externalversions/generic.go @@ -56,6 +56,8 @@ func (f *sharedInformerFactory) ForResource(resource schema.GroupVersionResource return &genericInformer{resource: resource.GroupResource(), informer: f.Jetstream().V1beta2().Consumers().Informer()}, nil case v1beta2.SchemeGroupVersion.WithResource("keyvalues"): return &genericInformer{resource: resource.GroupResource(), informer: f.Jetstream().V1beta2().KeyValues().Informer()}, nil + case v1beta2.SchemeGroupVersion.WithResource("objectstores"): + return &genericInformer{resource: resource.GroupResource(), informer: f.Jetstream().V1beta2().ObjectStores().Informer()}, nil case v1beta2.SchemeGroupVersion.WithResource("streams"): return &genericInformer{resource: resource.GroupResource(), informer: f.Jetstream().V1beta2().Streams().Informer()}, nil diff --git a/pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/interface.go b/pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/interface.go index 29a492fb..772f3ab7 100644 --- a/pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/interface.go +++ b/pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/interface.go @@ -27,6 +27,8 @@ type Interface interface { Consumers() ConsumerInformer // KeyValues returns a KeyValueInformer. KeyValues() KeyValueInformer + // ObjectStores returns a ObjectStoreInformer. + ObjectStores() ObjectStoreInformer // Streams returns a StreamInformer. Streams() StreamInformer } @@ -57,6 +59,11 @@ func (v *version) KeyValues() KeyValueInformer { return &keyValueInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} } +// ObjectStores returns a ObjectStoreInformer. +func (v *version) ObjectStores() ObjectStoreInformer { + return &objectStoreInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} +} + // Streams returns a StreamInformer. func (v *version) Streams() StreamInformer { return &streamInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} diff --git a/pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/objectstore.go b/pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/objectstore.go new file mode 100644 index 00000000..7fb5384e --- /dev/null +++ b/pkg/jetstream/generated/informers/externalversions/jetstream/v1beta2/objectstore.go @@ -0,0 +1,87 @@ +// Copyright 2025 The NATS Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by informer-gen. DO NOT EDIT. + +package v1beta2 + +import ( + context "context" + time "time" + + apisjetstreamv1beta2 "github.com/nats-io/nack/pkg/jetstream/apis/jetstream/v1beta2" + versioned "github.com/nats-io/nack/pkg/jetstream/generated/clientset/versioned" + internalinterfaces "github.com/nats-io/nack/pkg/jetstream/generated/informers/externalversions/internalinterfaces" + jetstreamv1beta2 "github.com/nats-io/nack/pkg/jetstream/generated/listers/jetstream/v1beta2" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + runtime "k8s.io/apimachinery/pkg/runtime" + watch "k8s.io/apimachinery/pkg/watch" + cache "k8s.io/client-go/tools/cache" +) + +// ObjectStoreInformer provides access to a shared informer and lister for +// ObjectStores. +type ObjectStoreInformer interface { + Informer() cache.SharedIndexInformer + Lister() jetstreamv1beta2.ObjectStoreLister +} + +type objectStoreInformer struct { + factory internalinterfaces.SharedInformerFactory + tweakListOptions internalinterfaces.TweakListOptionsFunc + namespace string +} + +// NewObjectStoreInformer constructs a new informer for ObjectStore type. +// Always prefer using an informer factory to get a shared informer instead of getting an independent +// one. This reduces memory footprint and number of connections to the server. +func NewObjectStoreInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { + return NewFilteredObjectStoreInformer(client, namespace, resyncPeriod, indexers, nil) +} + +// NewFilteredObjectStoreInformer constructs a new informer for ObjectStore type. +// Always prefer using an informer factory to get a shared informer instead of getting an independent +// one. This reduces memory footprint and number of connections to the server. +func NewFilteredObjectStoreInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { + return cache.NewSharedIndexInformer( + &cache.ListWatch{ + ListFunc: func(options v1.ListOptions) (runtime.Object, error) { + if tweakListOptions != nil { + tweakListOptions(&options) + } + return client.JetstreamV1beta2().ObjectStores(namespace).List(context.TODO(), options) + }, + WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { + if tweakListOptions != nil { + tweakListOptions(&options) + } + return client.JetstreamV1beta2().ObjectStores(namespace).Watch(context.TODO(), options) + }, + }, + &apisjetstreamv1beta2.ObjectStore{}, + resyncPeriod, + indexers, + ) +} + +func (f *objectStoreInformer) defaultInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer { + return NewFilteredObjectStoreInformer(client, f.namespace, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions) +} + +func (f *objectStoreInformer) Informer() cache.SharedIndexInformer { + return f.factory.InformerFor(&apisjetstreamv1beta2.ObjectStore{}, f.defaultInformer) +} + +func (f *objectStoreInformer) Lister() jetstreamv1beta2.ObjectStoreLister { + return jetstreamv1beta2.NewObjectStoreLister(f.Informer().GetIndexer()) +} diff --git a/pkg/jetstream/generated/listers/jetstream/v1beta2/expansion_generated.go b/pkg/jetstream/generated/listers/jetstream/v1beta2/expansion_generated.go index b49efd09..fc1de0d4 100644 --- a/pkg/jetstream/generated/listers/jetstream/v1beta2/expansion_generated.go +++ b/pkg/jetstream/generated/listers/jetstream/v1beta2/expansion_generated.go @@ -39,6 +39,14 @@ type KeyValueListerExpansion interface{} // KeyValueNamespaceLister. type KeyValueNamespaceListerExpansion interface{} +// ObjectStoreListerExpansion allows custom methods to be added to +// ObjectStoreLister. +type ObjectStoreListerExpansion interface{} + +// ObjectStoreNamespaceListerExpansion allows custom methods to be added to +// ObjectStoreNamespaceLister. +type ObjectStoreNamespaceListerExpansion interface{} + // StreamListerExpansion allows custom methods to be added to // StreamLister. type StreamListerExpansion interface{} diff --git a/pkg/jetstream/generated/listers/jetstream/v1beta2/objectstore.go b/pkg/jetstream/generated/listers/jetstream/v1beta2/objectstore.go new file mode 100644 index 00000000..332e256d --- /dev/null +++ b/pkg/jetstream/generated/listers/jetstream/v1beta2/objectstore.go @@ -0,0 +1,67 @@ +// Copyright 2025 The NATS Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by lister-gen. DO NOT EDIT. + +package v1beta2 + +import ( + jetstreamv1beta2 "github.com/nats-io/nack/pkg/jetstream/apis/jetstream/v1beta2" + labels "k8s.io/apimachinery/pkg/labels" + listers "k8s.io/client-go/listers" + cache "k8s.io/client-go/tools/cache" +) + +// ObjectStoreLister helps list ObjectStores. +// All objects returned here must be treated as read-only. +type ObjectStoreLister interface { + // List lists all ObjectStores in the indexer. + // Objects returned here must be treated as read-only. + List(selector labels.Selector) (ret []*jetstreamv1beta2.ObjectStore, err error) + // ObjectStores returns an object that can list and get ObjectStores. + ObjectStores(namespace string) ObjectStoreNamespaceLister + ObjectStoreListerExpansion +} + +// objectStoreLister implements the ObjectStoreLister interface. +type objectStoreLister struct { + listers.ResourceIndexer[*jetstreamv1beta2.ObjectStore] +} + +// NewObjectStoreLister returns a new ObjectStoreLister. +func NewObjectStoreLister(indexer cache.Indexer) ObjectStoreLister { + return &objectStoreLister{listers.New[*jetstreamv1beta2.ObjectStore](indexer, jetstreamv1beta2.Resource("objectstore"))} +} + +// ObjectStores returns an object that can list and get ObjectStores. +func (s *objectStoreLister) ObjectStores(namespace string) ObjectStoreNamespaceLister { + return objectStoreNamespaceLister{listers.NewNamespaced[*jetstreamv1beta2.ObjectStore](s.ResourceIndexer, namespace)} +} + +// ObjectStoreNamespaceLister helps list and get ObjectStores. +// All objects returned here must be treated as read-only. +type ObjectStoreNamespaceLister interface { + // List lists all ObjectStores in the indexer for a given namespace. + // Objects returned here must be treated as read-only. + List(selector labels.Selector) (ret []*jetstreamv1beta2.ObjectStore, err error) + // Get retrieves the ObjectStore from the indexer for a given namespace and name. + // Objects returned here must be treated as read-only. + Get(name string) (*jetstreamv1beta2.ObjectStore, error) + ObjectStoreNamespaceListerExpansion +} + +// objectStoreNamespaceLister implements the ObjectStoreNamespaceLister +// interface. +type objectStoreNamespaceLister struct { + listers.ResourceIndexer[*jetstreamv1beta2.ObjectStore] +}