Skip to content

Commit

Permalink
Kafka Scaler: Add UnsafeSsl flag (kedacore#1214)
Browse files Browse the repository at this point in the history
Signed-off-by: Bojan Zelic <[email protected]>
  • Loading branch information
BojanZelic authored Sep 26, 2023
1 parent 871d978 commit 0d7f5cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion content/docs/2.12/scalers/apache-kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ triggers:
excludePersistentLag: false
version: 1.0.0
partitionLimitation: '1,2,10-20,31'
tls: enable
sasl: plaintext
tls: enable
unsafeSsl: false
```
**Parameter list:**
Expand All @@ -56,6 +57,7 @@ partition will be scaled to zero. See the [discussion](https://github.com/kedaco
- `partitionLimitation` - Comma separated list of partition ids to scope the scaling on. Allowed patterns are "x,y" and/or ranges "x-y". If set, the calculation of the lag will only take these ids into account. (Default: All partitions, Optional)
- `sasl` - Kafka SASL auth mode. (Values: `plaintext`, `scram_sha256`, `scram_sha512`, `oauthbearer` or `none`, Default: `none`, Optional). This parameter could also be specified in `sasl` in TriggerAuthentication
- `tls` - To enable SSL auth for Kafka, set this to `enable`. If not set, TLS for Kafka is not used. (Values: `enable`, `disable`, Default: `disable`, Optional). This parameter could also be specified in `tls` in TriggerAuthentication
- `unsafeSsl` - Skip certificate validation when connecting over HTTPS. (Values: `true`, `false`, Default: `false`, Optional)

> **Note:**
>
Expand Down

0 comments on commit 0d7f5cd

Please sign in to comment.