File tree Expand file tree Collapse file tree 8 files changed +0
-118
lines changed Expand file tree Collapse file tree 8 files changed +0
-118
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ SNUBA_IMAGE=getsentry/snuba:nightly
11
11
RELAY_IMAGE = getsentry/relay:nightly
12
12
SYMBOLICATOR_IMAGE = getsentry/symbolicator:nightly
13
13
VROOM_IMAGE = getsentry/vroom:nightly
14
- WAL2JSON_VERSION = latest
15
14
HEALTHCHECK_INTERVAL = 30s
16
15
HEALTHCHECK_TIMEOUT = 1m30s
17
16
HEALTHCHECK_RETRIES = 10
Original file line number Diff line number Diff line change @@ -98,9 +98,6 @@ geoip/GeoIP.conf
98
98
geoip /* .mmdb
99
99
geoip /.geoipupdate.lock
100
100
101
- # wal2json download
102
- postgres /wal2json
103
-
104
101
# integration testing
105
102
_integration-test /custom-ca-roots /nginx /*
106
103
sentry /test-custom-ca-roots.py
Original file line number Diff line number Diff line change @@ -126,23 +126,12 @@ services:
126
126
[
127
127
" postgres" ,
128
128
" -c" ,
129
- " wal_level=logical" ,
130
- " -c" ,
131
- " max_replication_slots=1" ,
132
- " -c" ,
133
- " max_wal_senders=1" ,
134
- " -c" ,
135
129
" max_connections=${POSTGRES_MAX_CONNECTIONS:-100}" ,
136
130
]
137
131
environment :
138
132
POSTGRES_HOST_AUTH_METHOD : " trust"
139
- entrypoint : /opt/sentry/postgres-entrypoint.sh
140
133
volumes :
141
134
- " sentry-postgres:/var/lib/postgresql/data"
142
- - type : bind
143
- read_only : true
144
- source : ./postgres/
145
- target : /opt/sentry/
146
135
zookeeper :
147
136
<< : *restart_policy
148
137
image : " confluentinc/cp-zookeeper:7.6.1"
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ source install/ensure-relay-credentials.sh
32
32
source install/generate-secret-key.sh
33
33
source install/update-docker-images.sh
34
34
source install/build-docker-images.sh
35
- source install/install-wal2json.sh
36
35
source install/bootstrap-snuba.sh
37
36
source install/upgrade-postgres.sh
38
37
source install/set-up-and-migrate-database.sh
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
OLD_VERSION=" $1 "
5
5
NEW_VERSION=" $2 "
6
6
7
- WAL2JSON_VERSION=${WAL2JSON_VERSION:- $(curl -s " https://api.github.com/repos/getsentry/wal2json/releases/latest" | grep -Po ' "tag_name": "\K.*?(?=")' )}
8
-
9
- sed -i -e " s/^WAL2JSON_VERSION=\([^:]\+\):.\+\$ /WAL2JSON_VERSION=\1:$WAL2JSON_VERSION /" .env
10
7
sed -i -e " s/^\(SENTRY\|SNUBA\|RELAY\|SYMBOLICATOR\|VROOM\)_IMAGE=\([^:]\+\):.\+\$ /\1_IMAGE=\2:$NEW_VERSION /" .env
11
8
sed -i -e " s/^\# Self-Hosted Sentry .*/# Self-Hosted Sentry $NEW_VERSION /" README.md
12
9
13
10
echo " New version: $NEW_VERSION "
14
- echo " New wal2json version: $WAL2JSON_VERSION "
You can’t perform that action at this time.
0 commit comments