Skip to content

Commit 3f59a19

Browse files
authored
Merge branch 'develop' into chore/bump_wrappers
2 parents 5c8c44c + 533f49a commit 3f59a19

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

common.vars.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres-version = "15.1.0.145"
1+
postgres-version = "15.1.0.147"

docker/all-in-one/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG postgres_version=15.1.0.83
33
ARG pgbouncer_release=1.18.0
44
ARG postgrest_release=10.1.2
55
ARG gotrue_release=2.47.0
6-
ARG adminapi_release=0.48.0
6+
ARG adminapi_release=0.57.1
77
ARG adminmgr_release=0.9.0
88
ARG vector_release=0.22.3
99
ARG postgres_exporter_release=0.9.0

docker/all-in-one/init/configure-envoy.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#!/bin/bash
22
set -eou pipefail
33

4+
if [ "${ENVOY_ENABLED:-}" != "true" ]; then
5+
exit
6+
fi
7+
48
ENVOY_CDS_CONF=/etc/envoy/cds.yaml
59
ENVOY_LDS_CONF=/etc/envoy/lds.yaml
610
touch /var/log/services/envoy.log
@@ -25,8 +29,8 @@ fi
2529

2630
if [ -f "${INIT_PAYLOAD_PATH:-}" ]; then
2731
echo "init envoy payload"
28-
tar -xzvf "$INIT_PAYLOAD_PATH" -C / ./etc/envoy/
29-
chown -R adminapi:adminapi /etc/envoy
32+
tar -xzvhf "$INIT_PAYLOAD_PATH" -C / ./etc/envoy/
33+
chown -HR adminapi:adminapi /etc/envoy
3034
fi
3135

3236
# Inject project specific configuration

0 commit comments

Comments
 (0)