From a61ce70631c8c36e45bf89e2795eb6cc62606818 Mon Sep 17 00:00:00 2001 From: Dao Thanh Tung Date: Wed, 31 May 2023 02:46:28 +0800 Subject: [PATCH] Add doc changes for allowing `unsafeSsl` feature in RabbitMQ (#1136) --- content/docs/2.11/scalers/rabbitmq-queue.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/docs/2.11/scalers/rabbitmq-queue.md b/content/docs/2.11/scalers/rabbitmq-queue.md index be641c17a..6402a3b81 100644 --- a/content/docs/2.11/scalers/rabbitmq-queue.md +++ b/content/docs/2.11/scalers/rabbitmq-queue.md @@ -24,13 +24,14 @@ triggers: # Alternatively, you can use existing environment variables to read configuration from: # See details in "Parameter list" section hostFromEnv: RABBITMQ_HOST # Optional. You can use this instead of `host` parameter + unsafeSsl: true ``` **Parameter list:** - `host` - Host of RabbitMQ with format `://:/vhost`. The resolved host should follow a format like `amqp://guest:password@localhost:5672/vhost` or `http://guest:password@localhost:15672/vhost`. When using a username/password consider using `hostFromEnv` or a TriggerAuthentication. - `queueName` - Name of the queue to read message from. -- `mode` - QueueLength to trigger on number of messages in the queue. MessageRate to trigger on the publish rate into the queue. (Values: `QueueLength`, `MessageRate`) +- `mode` - QueueLength to trigger on number of messages in the queue. MessageRate to trigger on the published rate into the queue. (Values: `QueueLength`, `MessageRate`) - `value` - Message backlog or Publish/sec. rate to trigger on. (This value can be a float when `mode: MessageRate`) - `activationValue` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds).(Default: `0`, Optional, This value can be a float) - `protocol` - Protocol to be used for communication. (Values: `auto`, `http`, `amqp`, Default: `auto`, Optional) @@ -42,6 +43,7 @@ triggers: - `metricName` - Name to assign to the metric. If not set KEDA will generate a name based on the queue name. If using more than one trigger it is required that all metricNames be unique. (DEPRECATED: This parameter is deprecated as of KEDA v2.10 and will be removed in version `2.12`) - `timeout` - Timeout **for this specific trigger**. This value will override the value defined in `KEDA_HTTP_DEFAULT_TIMEOUT`. (Optional, Only applies to hosts that use the `http` protocol) - `excludeUnacknowledged` - Set to `true` to specify that the `QueueLength` value should exclude unacknowledged messages (Ready messages only). (Values: `true`, `false`, Default: `false`, Optional, Only applies to hosts that use the `http` protocol) +- `unsafeSsl` - Whether to allow unsafe SSL (Values: `true`, `false`, Default: `false` ) Some parameters could be provided using environmental variables, instead of setting them directly in metadata. Here is a list of parameters you can use to retrieve values from environment variables: