Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Refactors eoapi-support into core eoapi chart [#262](https://github.com/developmentseed/eoapi-k8s/pull/262)
- Make integration tests fail properly
- Temporarily skip VRT driver in GDALg to avoid https://github.com/OSGeo/gdal/issues/12645
- Consistent naming of behavior field

## [0.7.13] - 2025-11-04

Expand Down
8 changes: 4 additions & 4 deletions charts/eoapi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ raster:
maxReplicas: 10
# `type`: "cpu" || "requestRate" || "both"
type: "requestRate"
behaviour:
behavior:
scaleDown:
stabilizationWindowSeconds: 60
scaleUp:
Expand Down Expand Up @@ -320,7 +320,7 @@ multidim:
maxReplicas: 10
# `type`: "cpu" || "requestRate" || "both"
type: "requestRate"
behaviour:
behavior:
scaleDown:
stabilizationWindowSeconds: 60
scaleUp:
Expand Down Expand Up @@ -392,7 +392,7 @@ stac:
maxReplicas: 10
# `type`: "cpu" || "requestRate" || "both"
type: "requestRate"
behaviour:
behavior:
scaleDown:
stabilizationWindowSeconds: 60
scaleUp:
Expand Down Expand Up @@ -452,7 +452,7 @@ vector:
maxReplicas: 10
# `type`: "cpu" || "requestRate" || "both"
type: "requestRate"
behaviour:
behavior:
scaleDown:
stabilizationWindowSeconds: 60
scaleUp:
Expand Down
8 changes: 4 additions & 4 deletions docs/autoscaling.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ stac:
minReplicas: 2
maxReplicas: 20
type: "both"
behaviour:
behavior:
scaleDown:
stabilizationWindowSeconds: 300 # 5min cooldown
policies:
Expand Down Expand Up @@ -147,7 +147,7 @@ raster:
minReplicas: 2
maxReplicas: 8
type: "cpu"
behaviour:
behavior:
scaleDown:
stabilizationWindowSeconds: 300
targets:
Expand Down Expand Up @@ -252,7 +252,7 @@ autoscaling:
# Type can be "cpu", "requestRate", or "both"
type: "cpu"
# Custom scaling behavior (optional)
behaviour: {}
behavior: {}
# Scaling targets
targets:
# CPU target percentage (when type is "cpu" or "both")
Expand Down Expand Up @@ -328,7 +328,7 @@ Adjust scaling behavior:

```yaml
autoscaling:
behaviour:
behavior:
scaleUp:
stabilizationWindowSeconds: 60 # Faster scaling up
policies:
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ Fine-tune scaling behavior:

```yaml
autoscaling:
behaviour:
behavior:
scaleDown:
stabilizationWindowSeconds: 60
scaleUp:
Expand Down