Skip to content

Commit 3b25cf6

Browse files
authored
Merge pull request #54 from woblerr/add_backrest_2_54_1
Add pgBackRest v2.54.1.
2 parents d724c75 + e80bd83 commit 3b25cf6

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
pgbackrest_version: ["2.52", "2.52.1", "2.53", "2.53.1", "2.54.0"]
14+
pgbackrest_version: ["2.52.1", "2.53", "2.53.1", "2.54.0", "2.54.1"]
1515
env:
16-
latest_version: "2.54.0"
16+
latest_version: "2.54.1"
1717
download_url: "https://github.com/pgbackrest/pgbackrest/archive/release"
1818
steps:
1919
- uses: actions/checkout@v2
@@ -151,7 +151,7 @@ jobs:
151151
runs-on: ubuntu-latest
152152
strategy:
153153
matrix:
154-
pgbackrest_version: ["2.47_arenadata4", "2.50_arenadata4", "2.52_arenadata6"]
154+
pgbackrest_version: ["2.47_arenadata4", "2.50_arenadata4", "2.52_arenadata7"]
155155
env:
156156
download_url: "https://github.com/arenadata/pgbackrest/archive"
157157
steps:

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
BACKREST_VERSIONS = 2.52 2.52.1 2.53 2.53.1 2.54.0
2-
TAG?=2.54.0
1+
BACKREST_VERSIONS = 2.52.1 2.53 2.53.1 2.54.0 2.54.1
2+
TAG?=2.54.1
33
TAG_MESON_BUILD=2.51
44
BACKREST_DOWNLOAD_URL = https://github.com/pgbackrest/pgbackrest/archive/release
5-
BACKREST_GPDB_VERSIONS = 2.47_arenadata4 2.50_arenadata4 2.52_arenadata6
6-
TAG_GPDB?=2.52_arenadata6
5+
BACKREST_GPDB_VERSIONS = 2.47_arenadata4 2.50_arenadata4 2.52_arenadata7
6+
TAG_GPDB?=2.52_arenadata7
77
BACKREST_GPDB_DOWNLOAD_URL = https://github.com/arenadata/pgbackrest/archive
88
BACKREST_COMP_VERSION?=v0.9
99
UID := $(shell id -u)

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ The repository contains information for the last 5 releases of pgBackRest. If ne
88

99
Supported pgBackRest version tags:
1010

11-
* `2.54.0`, `latest`
11+
* `2.54.1`, `latest`
12+
* `2.54.1-alpine`
13+
* `2.54.0`
1214
* `2.54.0-alpine`
1315
* `2.53.1`
1416
* `2.53.1-alpine`
1517
* `2.53`
1618
* `2.53-alpine`
1719
* `2.52.1`
1820
* `2.52.1-alpine`
19-
* `2.52`
20-
* `2.52-alpine`
2121

2222
The repository also contains information for releases of pgBackRest fork with Greenplum support (see [pgbackrest/pull/1833](https://github.com/pgbackrest/pgbackrest/pull/1833)). Details - [build with Greenplum support](#build-with-greenplum-support).
2323

@@ -83,10 +83,10 @@ docker run --rm pgbackrest:51 pgbackrest help
8383
### Injecting inside
8484

8585
```bash
86-
docker run --rm -it pgbackrest:2.54.0 bash
86+
docker run --rm -it pgbackrest:2.54.1 bash
8787

8888
pgbackrest@cac1f58b56f2:/$ pgbackrest version
89-
pgBackRest 2.54.0
89+
pgBackRest 2.54.1
9090
```
9191

9292
### Example for Dedicated Repository Host
@@ -102,7 +102,7 @@ docker run --rm \
102102
-v ~/.ssh/id_rsa:/home/pgbackrest/.ssh/id_rsa \
103103
-v /etc/pgbackrest:/etc/pgbackrest \
104104
-v /var/lib/pgbackrest:/var/lib/pgbackrest \
105-
pgbackrest:2.54.0 \
105+
pgbackrest:2.54.1 \
106106
pgbackrest backup --stanza demo --type full --log-level-console info
107107
```
108108

@@ -129,7 +129,7 @@ docker run --rm \
129129
-v /etc/pgbackrest:/etc/pgbackrest \
130130
-v /var/lib/pgbackrest:/var/lib/pgbackrest \
131131
-v /tmp/pgbackrest:/tmp/pgbackrest \
132-
pgbackrest:2.54.0 \
132+
pgbackrest:2.54.1 \
133133
pgbackrest backup --stanza demo --type full --log-level-console info
134134
```
135135

@@ -165,7 +165,7 @@ docker run -d \
165165
-v /var/lib/pgbackrest:/var/lib/pgbackrest \
166166
-p 8432:8432 \
167167
--name backrest_server \
168-
pgbackrest:2.54.0
168+
pgbackrest:2.54.1
169169
```
170170

171171
##### Run container with TLS server in background for pgBackRest execution over TLS
@@ -177,7 +177,7 @@ docker run --rm \
177177
-e BACKREST_HOST_TYPE=tls \
178178
-v /etc/pgbackrest:/etc/pgbackrest \
179179
-v /var/lib/pgbackrest:/var/lib/pgbackrest \
180-
pgbackrest:2.54.0 \
180+
pgbackrest:2.54.1 \
181181
pgbackrest backup --stanza demo --type full --log-level-console info
182182
```
183183

@@ -196,7 +196,7 @@ docker run --rm \
196196
-v /var/lib/postgresql/12/main:/var/lib/postgresql/12/main \
197197
-v /var/lib/pgbackrest:/var/lib/pgbackrest \
198198
-v /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432 \
199-
pgbackrest:2.54.0 \
199+
pgbackrest:2.54.1 \
200200
pgbackrest backup --stanza demo --type full --log-level-console info
201201
```
202202

@@ -216,7 +216,7 @@ docker run -d \
216216
-v /var/lib/pgbackrest:/var/lib/pgbackrest \
217217
-p 8432:8432 \
218218
--name backrest_server \
219-
pgbackrest:2.54.0
219+
pgbackrest:2.54.1
220220
```
221221

222222
Performing a backup:
@@ -229,28 +229,28 @@ docker run --rm \
229229
-v /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
230230
-v /etc/pgbackrest/cert:/etc/pgbackrest/cert \
231231
-v /var/lib/pgbackrest:/var/lib/pgbackrest \
232-
pgbackrest:2.54.0 \
232+
pgbackrest:2.54.1 \
233233
pgbackrest backup --stanza demo --type full --log-level-console info
234234
```
235235

236236
## Build
237237

238238
```bash
239-
make build_version TAG=2.54.0
239+
make build_version TAG=2.54.1
240240
```
241241

242242
```bash
243-
make build_version_alpine TAG=2.54.0
243+
make build_version_alpine TAG=2.54.1
244244
```
245245

246246
or
247247

248248
```bash
249-
docker build -f Dockerfile --build-arg BACKREST_VERSION=2.54.0 --build-arg BACKREST_COMPLETION_VERSION=v0.9 -t pgbackrest:2.54.0 .
249+
docker build -f Dockerfile --build-arg BACKREST_VERSION=2.54.1 --build-arg BACKREST_COMPLETION_VERSION=v0.9 -t pgbackrest:2.54.1 .
250250
```
251251

252252
```bash
253-
docker build -f Dockerfile.alpine --build-arg BACKREST_VERSION=2.54.0 --build-arg BACKREST_COMPLETION_VERSION=v0.9 -t pgbackrest:2.54.0-alpine .
253+
docker build -f Dockerfile.alpine --build-arg BACKREST_VERSION=2.54.1 --build-arg BACKREST_COMPLETION_VERSION=v0.9 -t pgbackrest:2.54.1-alpine .
254254
```
255255

256256
### Build pgBackRest < `v2.51`

e2e_tests/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
TAG=2.54.0
1+
TAG=2.54.1
22
PG_VERSION=16
33
IMAGE_TAG_MINIO=RELEASE.2023-09-07T02-05-02Z
44
IMAGE_TAG_MINIO_MC=RELEASE.2023-09-07T22-48-55Z

e2e_tests/conf/pg/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BACKREST_VERSION="2.54.0"
1+
ARG BACKREST_VERSION="2.54.1"
22
ARG CONTAINER_TYPE="ssh"
33
ARG PG_VERSION="16"
44

e2e_tests/conf/sftp/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BACKREST_VERSION="2.54.0"
1+
ARG BACKREST_VERSION="2.54.1"
22

33
FROM pgbackrest:${BACKREST_VERSION}
44
ARG CONTAINER_TYPE="rsa"

0 commit comments

Comments
 (0)