Backport of docs: Fix example control-plane-request-limit HCL and JSON into release/1.16.x (#19254)
backport of commit e5b6120abb51d759c74c727bdb54f2f328367d0d Co-authored-by: Blake Covarrubias <blake@covarrubi.as>
This commit is contained in:
parent
adefe8d16a
commit
4b304d4934
|
@ -40,48 +40,48 @@ When every field is defined, a control plane request limit configuration entry h
|
||||||
<CodeTabs>
|
<CodeTabs>
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
kind = "control-plane-request-limit"
|
Kind = "control-plane-request-limit"
|
||||||
name = "<name-for-the-entry>"
|
Name = "<name-for-the-entry>"
|
||||||
|
|
||||||
mode = "permissive"
|
Mode = "permissive"
|
||||||
|
|
||||||
read_rate = 100
|
ReadRate = 100
|
||||||
write_rate = 100
|
WriteRate = 100
|
||||||
|
|
||||||
kv = {
|
KV = {
|
||||||
read_rate = 100
|
ReadRate = 100
|
||||||
write_rate = 100
|
WriteRate = 100
|
||||||
}
|
}
|
||||||
|
|
||||||
acl = {
|
ACL = {
|
||||||
read_rate = 100
|
ReadRate = 100
|
||||||
write_rate = 100
|
WriteRate = 100
|
||||||
}
|
}
|
||||||
|
|
||||||
catalog = {
|
Catalog = {
|
||||||
read_rate = 100
|
ReadRate = 100
|
||||||
write_rate = 100
|
WriteRate = 100
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"kind": "control-plane-request-limit",
|
"Kind": "control-plane-request-limit",
|
||||||
"name": "<name-for-the-entry>",
|
"Name": "<name-for-the-entry>",
|
||||||
"mode": "permissive",
|
"Mode": "permissive",
|
||||||
"read_rate": 100,
|
"ReadRate": 100,
|
||||||
"write_rate": 100,
|
"WriteRate": 100,
|
||||||
"kv": {
|
"KV": {
|
||||||
"read_rate": 100,
|
"ReadRate": 100,
|
||||||
"write_rate": 100
|
"WriteRate": 100
|
||||||
},
|
},
|
||||||
"acl": {
|
"ACL": {
|
||||||
"read_rate": 100,
|
"ReadRate": 100,
|
||||||
"write_rate": 100
|
"WriteRate": 100
|
||||||
},
|
},
|
||||||
"catalog": {
|
"Catalog": {
|
||||||
"read_rate": 100,
|
"ReadRate": 100,
|
||||||
"write_rate": 100
|
"WriteRate": 100
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue