From 0ad61179b5bfafa9941dc475bc5a658d0d86bbe6 Mon Sep 17 00:00:00 2001 From: devthejo Date: Fri, 28 Jun 2024 20:14:32 +0200 Subject: [PATCH] feat: minio-upload --- minio-upload/Dockerfile | 5 ++++ minio-upload/README.md | 7 +++++ minio-upload/action.yml | 35 ++++++++++++++++++++++++ minio-upload/entrypoint.sh | 54 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 101 insertions(+) create mode 100644 minio-upload/Dockerfile create mode 100644 minio-upload/README.md create mode 100644 minio-upload/action.yml create mode 100755 minio-upload/entrypoint.sh diff --git a/minio-upload/Dockerfile b/minio-upload/Dockerfile new file mode 100644 index 0000000..152cd02 --- /dev/null +++ b/minio-upload/Dockerfile @@ -0,0 +1,5 @@ +FROM minio/mc:RELEASE.2024-06-24T19-40-33Z.fips + +COPY entrypoint.sh /entrypoint.sh + +ENTRYPOINT ["/entrypoint.sh"] diff --git a/minio-upload/README.md b/minio-upload/README.md new file mode 100644 index 0000000..2a6425d --- /dev/null +++ b/minio-upload/README.md @@ -0,0 +1,7 @@ +# minio Action + +This action allows you to upload objects to a MinIO server + + +--- +forked from https://github.com/cloudkernels/minio-upload \ No newline at end of file diff --git a/minio-upload/action.yml b/minio-upload/action.yml new file mode 100644 index 0000000..096ca91 --- /dev/null +++ b/minio-upload/action.yml @@ -0,0 +1,35 @@ +# action.yml + +name: minio-upload +description: "Action that lets you upload objects from a MinIO server" +inputs: + url: + description: "URL of the MinIO server" + required: true + access-key: + description: "Access Key for the MinIO server" + required: true + secret-key: + description: "Secret Key for the MinIO server" + required: true + local-path: + description: 'Path of the local object' + required: true + default: './' + remote-path: + description: 'Path to remote object' + required: true + policy: + description: 'Policy' + required: false + +runs: + using: 'docker' + image: 'Dockerfile' + args: + - ${{ inputs.url }} + - ${{ inputs.access-key }} + - ${{ inputs.secret-key }} + - ${{ inputs.local-path }} + - ${{ inputs.remote-path }} + - ${{ inputs.policy }} diff --git a/minio-upload/entrypoint.sh b/minio-upload/entrypoint.sh new file mode 100755 index 0000000..1406bbd --- /dev/null +++ b/minio-upload/entrypoint.sh @@ -0,0 +1,54 @@ +#!/bin/bash + +LOG_NAME="minio" + +info() { + [ -t 1 ] && [ -n "$TERM" ] \ + && echo "$(tput setaf 2)[$LOG_NAME]$(tput sgr0) $*" \ + || echo "[$LOG_NAME] $*" +} + +err() { + [ -t 2 ] && [ -n "$TERM" ] \ + && echo -e "$(tput setaf 1)[$LOG_NAME]$(tput sgr0) $*" 1>&2 \ + || echo -e "[$LOG_NAME] $*" 1>&2 +} + +die() { + err "$@" + exit 1 +} + +ok_or_die() { + if [ $? -ne 0 ]; then + die $1 + fi +} + +if [[ $# -lt 5 ]] ; then + die "Usage: $0 url access_key secret_key local_path remote_path" +fi + +url=$1 +access_key=$2 +secret_key=$3 +local_path=$4 +remote_path=$5 + +info "Will upload $local_path to $remote_path" + +mc alias set s3 $url $access_key $secret_key +ok_or_die "Could not set mc alias" + +mc cp -r $local_path s3/$remote_path +ok_or_die "Could not upload object" + +if [[ $# -eq 6 ]] ; then + if [[ $6 -eq 1 ]] ; then + info "Will make $remote_path public" + mc anonymous -r set download s3/$remote_path + else + info "Will make $remote_path private" + mc anonymous -r set private s3/$remote_path || true + fi +fi