mirror of
https://github.com/minio/minio-rs.git
synced 2025-12-06 23:36:52 +08:00
* {set,get,delete}_bucket_notification
* {set,get,delete}_bucket_policy
* {set,get,delete}_bucket_replication
* {set,get,delete}_bucket_tags
* {set,get,delete}_object_lock_config
* {set,get,delete}_object_tags
* {set,get}_bucket_versioning
* {set,get}_object_retention
* get_presigned_object_url
* get_presigned_post_form_data
* {upload,download}_object
Signed-off-by: Bala.FA <bala@minio.io>
17 lines
407 B
Bash
Executable File
17 lines
407 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
wget --quiet https://dl.min.io/server/minio/release/linux-amd64/minio
|
|
chmod +x minio
|
|
mkdir -p /tmp/certs
|
|
cp ./tests/public.crt ./tests/private.key /tmp/certs/
|
|
|
|
(MINIO_CI_CD=true \
|
|
MINIO_NOTIFY_WEBHOOK_ENABLE_miniojavatest=on \
|
|
MINIO_NOTIFY_WEBHOOK_ENDPOINT_miniojavatest=http://example.org/ \
|
|
./minio server /tmp/test-xl/{1...4}/ --certs-dir /tmp/certs/ &)
|
|
|
|
sleep 10
|