Skip to content

Commit d4faa05

Browse files
authored
fix: reserver additional port for adminapi (#2058)
1 parent 57a41b6 commit d4faa05

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

ansible/tasks/setup-system.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,11 @@
167167
state: 'present'
168168

169169
# postgres_exporter runs on port 9187 and postgresT occasionlly chooses it as random srcport
170-
- name: Set net.ipv4.ip_local_reserved_ports=9187
170+
# adminapi for 8085
171+
- name: Set net.ipv4.ip_local_reserved_ports
171172
ansible.builtin.sysctl:
172173
name: 'net.ipv4.ip_local_reserved_ports'
173-
value: 9187
174+
value: '9187,8085'
174175
state: 'present'
175176

176177
- name: Execute tasks when (debpkg_mode or nixpkg_mode)

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ postgres_major:
1010

1111
# Full version strings for each major version
1212
postgres_release:
13-
postgresorioledb-17: "17.6.0.041-orioledb"
14-
postgres17: "17.6.1.084"
15-
postgres15: "15.14.1.084"
13+
postgresorioledb-17: "17.6.0.042-orioledb"
14+
postgres17: "17.6.1.085"
15+
postgres15: "15.14.1.085"
1616

1717
# Non Postgres Extensions
1818
pgbouncer_release: 1.25.1

0 commit comments

Comments
 (0)