Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: allow for a larger number of connections #1075

Merged
merged 2 commits into from
Jul 29, 2024
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
2 changes: 2 additions & 0 deletions ansible/files/envoy_config/lds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ resources:
hint: '%RESPONSE_CODE_DETAILS%'
json_format_options:
sort_properties: false
merge_slashes: true
route_config:
name: route_config_0
virtual_hosts:
Expand Down Expand Up @@ -247,6 +248,7 @@ resources:
route:
cluster: admin_api
prefix_rewrite: /
timeout: 600s
- match:
prefix: /customer/v1/privileged/
route:
Expand Down
10 changes: 10 additions & 0 deletions ansible/tasks/setup-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,13 @@
state: present
reload: yes
when: debpkg_mode or nixpkg_mode

- name: configure system
ansible.posix.sysctl:
name: 'net.core.somaxconn'
value: 16834

- name: configure system
ansible.posix.sysctl:
name: 'net.ipv4.ip_local_port_range'
value: '1025 65000'
2 changes: 1 addition & 1 deletion common-nix.vars.pkr.hcl
Original file line number Diff line number Diff line change
@@ -1 +1 @@
postgres-version = "15.6.1.99"
postgres-version = "15.6.1.100"
2 changes: 1 addition & 1 deletion common.vars.pkr.hcl
Original file line number Diff line number Diff line change
@@ -1 +1 @@
postgres-version = "15.1.1.81"
postgres-version = "15.1.1.82"
Loading