Skip to content

Commit

Permalink
compact
Browse files Browse the repository at this point in the history
  • Loading branch information
michalpristas committed Oct 6, 2021
1 parent b91fb95 commit 3e9ba00
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 22 deletions.
16 changes: 11 additions & 5 deletions dev-tools/buildlimits/buildlimits.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions internal/pkg/config/defaults/1024_limits.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
min_ram: 1024
max_ram: 2048
ram:
min: 1024
max: 2048
cache_limits:
num_counters: 20000
max_cost: 20971520
Expand Down
5 changes: 3 additions & 2 deletions internal/pkg/config/defaults/2048_limits.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
min_ram: 2048
max_ram: 4096
ram:
min: 2048
max: 4096
cache_limits:
num_counters: 40000
max_cost: 50971520
Expand Down
5 changes: 3 additions & 2 deletions internal/pkg/config/defaults/4096_limits.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
min_ram: 4096
max_ram: 8192
ram:
min: 4096
max: 8192
cache_limits:
num_counters: 80000
max_cost: 104857600
Expand Down
5 changes: 3 additions & 2 deletions internal/pkg/config/defaults/8192_limits.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
min_ram: 8192
max_ram: 16384
ram:
min: 8192
max: 16384
cache_limits:
num_counters: 160000
max_cost: 209715200
Expand Down
3 changes: 2 additions & 1 deletion internal/pkg/config/defaults/base_limits.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
max_ram: 1024
ram:
max: 1024
cache_limits:
num_counters: 2000
max_cost: 2097152
Expand Down
3 changes: 2 additions & 1 deletion internal/pkg/config/defaults/max_limits.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
min_ram: 16384
ram:
min: 16384
cache_limits:
num_counters: 160000
max_cost: 209715200
Expand Down
18 changes: 12 additions & 6 deletions internal/pkg/config/env_defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/pkg/config/env_defaults_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3e9ba00

Please sign in to comment.