We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65baa9e commit 5a1128dCopy full SHA for 5a1128d
1 file changed
kubernetes/helm/eoapi-values.yaml
@@ -17,6 +17,31 @@ vector:
17
# needed currently, so it is disabled to save on some cluster resources.
18
enabled: false
19
20
+raster:
21
+ autoscaling:
22
+ enabled: true
23
+ minReplicas: 1
24
+ maxReplicas: 10
25
+ # `type`: "cpu" || "requestRate" || "both"
26
+ type: "cpu"
27
+ behaviour:
28
+ scaleDown:
29
+ stabilizationWindowSeconds: 60
30
+ scaleUp:
31
+ stabilizationWindowSeconds: 0
32
+ targets:
33
+ # matches `type` value above unless `type: "both"` is selected
34
+ cpu: 85
35
+ # requestRate: 15000 ## enable after load testing
36
+ settings:
37
+ resources:
38
+ requests:
39
+ cpu: "1024m"
40
+ memory: "3Gi"
41
+ limits:
42
+ cpu: "2048m"
43
+ memory: "4Gi"
44
+
45
stac:
46
image:
47
# From https://github.com/hotosm/OpenAerialMap/tree/main/backend/stac-api
0 commit comments