1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-12 10:04:14 +02:00

Revert Minio to prior release.

The most recent release of Minio has broken CI builds but there is no logging to indicate what is wrong.

For now, just use the prior release to get CI builds working again. This kind if breakage is not uncommon for Minio but they usually resolve it in the next release.
This commit is contained in:
David Steele 2022-02-02 14:39:39 -06:00
parent 9b2f10dbb4
commit b1da4e84e8
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@
<variable key="gcs-key">/etc/pgbackrest/gcs-key.json</variable>
<!-- S3 Settings -->
<variable key="s3-image">minio/minio</variable> <!-- Minio docker image -->
<variable key="s3-image">minio/minio:RELEASE.2022-01-28T02-28-16Z</variable> <!-- Minio docker image -->
<variable key="s3-all">n</variable> <!-- Build all the documentation with S3? -->
<variable key="s3-local">y</variable>
<variable key="s3-bucket">demo-bucket</variable>

View File

@ -67,7 +67,7 @@ sub new
my $strFakeCertPath = "${strProjectPath}/doc/resource/fake-cert";
my $self = $class->SUPER::new(
HOST_S3, 'test-' . testRunGet()->vmId() . '-s3-server', 'minio/minio', 'root', 'u18',
HOST_S3, 'test-' . testRunGet()->vmId() . '-s3-server', 'minio/minio:RELEASE.2022-01-28T02-28-16Z', 'root', 'u18',
["${strFakeCertPath}/s3-server.crt:/root/.minio/certs/public.crt:ro",
"${strFakeCertPath}/s3-server.key:/root/.minio/certs/private.key:ro"],
'-e MINIO_REGION=' . HOST_S3_REGION . ' -e MINIO_DOMAIN=' . HOST_S3_ENDPOINT . ' -e MINIO_BROWSER=off' .