Skip to content
2 changes: 1 addition & 1 deletion install/helm/agones/templates/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ spec:
- name: SIDECAR_RUN_AS_USER
value: "1000"
- name: SIDECAR_REQUESTS_RATE_LIMIT
value: {{ .Values.agones.controller.sdk.requestsRateLimit | quote }}
value: {{ .Values.agones.controller.sdkServer.requestsRateLimit | quote }}
- name: SDK_SERVICE_ACCOUNT
value: {{ .Values.agones.serviceaccount.sdk.name | quote }}
- name: PROMETHEUS_EXPORTER
Expand Down
2 changes: 1 addition & 1 deletion install/helm/agones/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@
"allocationBatchWaitTime": {
"type": "string"
},
"sdk": {
"sdkServer": {
"type": "object",
"properties": {
"requestsRateLimit": {
Expand Down
2 changes: 1 addition & 1 deletion install/helm/agones/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ agones:
failureThreshold: 3
timeoutSeconds: 1
allocationBatchWaitTime: 500ms
sdk:
sdkServer:
requestsRateLimit: 500ms
replicas: 2
pdb:
Expand Down
7 changes: 6 additions & 1 deletion site/content/en/docs/Installation/Install Agones/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,13 @@ The following tables lists the configurable parameters of the Agones chart and t
| `agones.controller.maxDeletionParallelism` | Maximum number of parallelizing deletion calls in GSS | `64` |
| `agones.controller.maxGameServerDeletionsPerBatch` | Maximum number of GameServer deletion calls per batch | `64` |
| `agones.controller.maxPodPendingCount` | Maximum number of pending pods per game server set | `5000` |

{{% feature publishVersion="1.51.0" %}}
| `agones.controller.sdk.requestsRateLimit` | The GameServer sidecar requests rate limit | `500ms` |
### SDK Server

| Parameter | Description | Default |
|----------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------|
| `agones.controller.sdkServer.requestsRateLimit` | The GameServer sidecar requests rate limit | `500ms` |
{{% /feature %}}

### Ping Service
Expand Down