abhagraw commented on code in PR #13997:
URL: https://github.com/apache/druid/pull/13997#discussion_r1152269953
##########
integration-tests-ex/cases/cluster/Common/dependencies.yaml:
##########
@@ -86,7 +86,37 @@ services:
MYSQL_USER: druid
MYSQL_PASSWORD: diurd
-## TODO: Not yet retested
+ minio:
+ container_name: minio
+ command: server /data --console-address ":9001"
+ networks:
+ druid-it-net:
+ ipv4_address: 172.172.172.5
+ image: minio/minio:latest
+ ports:
+ - '9000:9000'
+ - '9001:9001'
+ volumes:
+ - ${SHARED_DIR}/minio:/data
+ environment:
+ - MINIO_ROOT_USER=${AWS_ACCESS_KEY_ID}
+ - MINIO_ROOT_PASSWORD=${AWS_SECRET_ACCESS_KEY}
+
+ create_minio_buckets:
+ image: minio/mc
+ networks:
+ druid-it-net:
+ ipv4_address: 172.172.172.6
+ depends_on:
+ - minio
+ entrypoint: >
+ /bin/sh -c "
+ /usr/bin/mc alias set s3 http://minio:9000 ${AWS_ACCESS_KEY_ID}
${AWS_SECRET_ACCESS_KEY};
+ /usr/bin/mc mb s3/${DRUID_CLOUD_BUCKET};
+ /usr/bin/mc anonymous set public s3/${DRUID_CLOUD_BUCKET};
+ "
Review Comment:
Added dependency on create_minio_buckets for overlord.
Yeah, here dependencies indicate only run order.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]