(v int)
| 194 | } |
| 195 | |
| 196 | func abs(v int) int { |
| 197 | if v < 0 { |
| 198 | return -v |
| 199 | } |
| 200 | return v |
| 201 | } |
| 202 | |
| 203 | // Autosizing parameters: shards are sized by HelmRelease count, capped by |
| 204 | // tenant count (more shards than tenants is useless). The 100 HR/shard target |
no outgoing calls