Skip to content
Closed
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
3 changes: 3 additions & 0 deletions jobs/auctioneer/spec
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ properties:
diego.auctioneer.cell_state_timeout:
description: "Timeout applied to HTTP requests to the Cell State endpoint."
default: "10s"
diego.auctioneer.bin_pack_first_fit_weight:
description: "Factor to bias against BOSH instance index number of a cell. Instead of spreading containers equally accross all cells, cells with a lower index number will be deployed to first when this setting is > 0. (0.0 - 1.0)"
default: 0.0
diego.auctioneer.starting_container_weight:
description: "Factor to bias against cells with starting containers (0.0 - 1.0)"
default: 0.25
Expand Down
1 change: 1 addition & 0 deletions jobs/auctioneer/templates/auctioneer.json.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
rep_client_session_cache_size: p("diego.auctioneer.rep.client_session_cache_size"),
rep_require_tls: p("diego.auctioneer.rep.require_tls"),
cell_state_timeout: p("diego.auctioneer.cell_state_timeout"),
bin_pack_first_fit_weight: p("diego.auctioneer.bin_pack_first_fit_weight"),
starting_container_weight: p("diego.auctioneer.starting_container_weight"),
starting_container_count_maximum: p("diego.auctioneer.starting_container_count_maximum"),
}
Expand Down
1 change: 1 addition & 0 deletions jobs/rep/templates/rep.json.erb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
auto_disk_capacity_overhead_mb: p("diego.executor.auto_disk_capacity_overhead_mb"),
cache_path: "#{download_cache_dir}",
cell_id: spec.id,
cell_index: spec.index,
cell_registrations_locket_enabled: p("cell_registrations.locket.enabled"),
container_inode_limit: p("diego.executor.container_inode_limit"),
container_max_cpu_shares: p("diego.executor.container_max_cpu_shares"),
Expand Down