You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/README.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,33 +171,35 @@ The source sends the following event content:
171
171
172
172
## Creating and Managing Sources
173
173
174
+
*** The (Deprecated) Items in the table are going to be removed or changed in the next release ***
175
+
174
176
Sources are Kubernetes objects. In addition to the standard Kubernetes
175
177
`apiVersion`, `kind`, and `metadata`, they have the following `spec` fields:
176
178
177
179
Source parameters
178
180
| Field | Value |
179
181
|--------|--------|
180
-
|`broker`| Host+Port of the Broker, with a trailing "/" |
182
+
|`broker`(Deprecated) | Host+Port of the Broker, with a trailing "/" |
181
183
|`vhost` * | VHost where the source resources are located |
182
184
|`predeclared`| Defines if the source should try to create new queue or use predeclared one (Boolean) |
183
-
|`backoffPolicy`| The backoff policy type (linear, exponential) String |
184
-
|`backoffDelay`| Is the delay to be used before retrying by the backoff policy (String) |
185
+
|`backoffPolicy`(Deprecated) | The backoff policy type (linear, exponential) String |
186
+
|`backoffDelay`(Deprecated) | Is the delay to be used before retrying by the backoff policy (String) |
185
187
|`retry`| Number of retries to be used by the backoff policy (Int) |
186
-
|`user.secretKeyRef`| Username for Broker authentication; field `key` in a Kubernetes Secret named `name`|
187
-
|`password.secretKeyRef`| Password for Broker authentication; field `key` in a Kubernetes Secret named `name`|
188
+
|`user.secretKeyRef`(Deprecated) | Username for Broker authentication; field `key` in a Kubernetes Secret named `name`|
189
+
|`password.secretKeyRef`(Deprecated) | Password for Broker authentication; field `key` in a Kubernetes Secret named `name`|
188
190
|`connectionSecret`| The name of the RabbitMQ secret |
189
-
|`exchangeConfig`| Settings for the exchange |
191
+
|`exchangeConfig`(Deprecated) | Settings for the exchange |
190
192
|`exchangeConfig.name` * | Name of the exchange |
191
193
|`exchangeConfig.type`|[Exchange type](https://www.rabbitmq.com/tutorials/amqp-concepts.html#exchanges). Can be `fanout`, `direct`, `topic`, `match` or `headers`|
192
194
|`exchangeConfig.durable` * | Boolean |
193
195
|`exchangeConfig.autoDelete` * | Boolean |
194
-
|`queueConfig` * | Settings for the queue |
196
+
|`queueConfig` * (Deprecated) | Settings for the queue |
195
197
|`queueConfig.name`| Name of the queue |
196
198
|`queueConfig.routingKey` * | Routing key for the queue |
197
199
|`queueConfig.durable` * | Boolean |
198
200
|`queueConfig.autoDelete` * | Boolean |
199
-
|`channelConfig.parallelism` * | Int that sets the [Consumer Prefetch Value](https://www.rabbitmq.com/consumer-prefetch.html) and creates `n` parallel consumer processes. Default value is `1`. Value must be between `1` and `1000`. With a value of `1` the RabbitMQ Source process events in FIFO order, values above `1` break message ordering guarantees and can be seen as more performance oriented. |
200
-
|`channelConfig.globalQos` * | Boolean defining how the [Consumer Sharing Limit](https://www.rabbitmq.com/consumer-prefetch.html#sharing-the-limit) is handled. |
201
+
|`channelConfig.parallelism` * (Deprecated) | Int that sets the [Consumer Prefetch Value](https://www.rabbitmq.com/consumer-prefetch.html) and creates `n` parallel consumer processes. Default value is `1`. Value must be between `1` and `1000`. With a value of `1` the RabbitMQ Source process events in FIFO order, values above `1` break message ordering guarantees and can be seen as more performance oriented. |
202
+
|`channelConfig.globalQos` * (Deprecated) | Boolean defining how the [Consumer Sharing Limit](https://www.rabbitmq.com/consumer-prefetch.html#sharing-the-limit) is handled. |
201
203
|`sink`| A reference to an [Addressable](https://knative.dev/docs/eventing/#event-consumers) Kubernetes object |
202
204
|`serviceAccountName`| The service account name to be used by the Receive Adapter deployments generated by the Source |
0 commit comments