Skip to content

Commit

Permalink
fix: add useHttps/unsafeSsl to nsq scaler docs
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Ulmer <[email protected]>
  • Loading branch information
Ulminator committed Nov 5, 2024
1 parent 0b87ae3 commit ce3f01c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions content/docs/2.16/scalers/nsq.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ triggers:
channel: "example_channel"
depthThreshold: "10"
activationDepthThreshold: "0"
useHttps: "false"
unsafeSsl: "false"
```
**Parameter list:**
Expand All @@ -29,6 +31,9 @@ triggers:
- `channel` - Name of the channel used to calculate depth.
- `depthThreshold` - Target value for depth to trigger scaling actions. (Default `10`, Optional)
- `activationDepthThreshold` - Target value for depth to activate the scaler. (Default `0`, Optional)
- `useHttps` - Use HTTPS instead of HTTP when communicating with NSQ. (Values: `true`, `false`, Default: `false`, Optional)
- `unsafeSsl` - Skip certificate validation when connecting over HTTPS. (Values: `true`, `false`, Default: `false`, Optional)


> **Notice:**
> - Since ["channels are created on first use by subscribing to the named channel"](https://nsq.io/overview/design.html#simplifying-configuration-and-administration), the topic depth is used instead of the channel depth when the channel does not yet exist on an [nsqd](https://nsq.io/components/nsqd.html) instance. This allows KEDA to effectively bootstrap new channels when the `idleReplicaCount` is 0.
Expand Down

0 comments on commit ce3f01c

Please sign in to comment.