From 932a2f9e0983bb732730960260203d4f3076225d Mon Sep 17 00:00:00 2001 From: Yatsishin Ilya <2159081+qoega@users.noreply.github.com> Date: Thu, 5 Jan 2023 09:12:56 +0000 Subject: [PATCH] revert minio changes --- .../runner/compose/docker_compose_minio.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docker/test/integration/runner/compose/docker_compose_minio.yml b/docker/test/integration/runner/compose/docker_compose_minio.yml index 45f9ef3c454..3eaf891ff8e 100644 --- a/docker/test/integration/runner/compose/docker_compose_minio.yml +++ b/docker/test/integration/runner/compose/docker_compose_minio.yml @@ -2,17 +2,19 @@ version: '2.3' services: minio1: - image: minio/minio:RELEASE.2022-12-12T19-27-27Z + # Newer version of minio results in such errors: + # "AWSErrorMarshaller: Encountered AWSError 'InternalError': We encountered an internal error, please try again" + image: minio/minio:RELEASE.2021-09-23T04-46-24Z volumes: - - ${MINIO_DATA_DIR}:/data1 + - data1-1:/data1 - ${MINIO_CERTS_DIR:-}:/certs expose: - ${MINIO_PORT:-9001} environment: - MINIO_ROOT_USER: minio - MINIO_ROOT_PASSWORD: minio123 + MINIO_ACCESS_KEY: minio + MINIO_SECRET_KEY: minio123 MINIO_PROMETHEUS_AUTH_TYPE: public - command: server --address :9001 --certs-dir /certs /data1 + command: server --address :9001 --certs-dir /certs /data1-1 depends_on: - proxy1 - proxy2