1
0
mirror of https://github.com/minio/docs.git synced 2025-09-10 20:12:12 +03:00
Files
docs/source/reference/minio-mc/mc-support-upload.rst
Daryl White da87d38137 Updates for mc RELEASE.2025-02-04T04-57-50Z (#1427)
- Adds info for using absolute time on some mc find flags
- Adds --enc flag to mc support upload
- Fixes for thresholds page

Closes #1412
2025-02-21 12:15:41 -05:00

2.4 KiB

mc support upload

minio

Table of Contents

mc support upload

Description

mc support upload copies a file from the local file system to a SUBNET ticket.

Syntax

The mc support profile command has the following syntax:

mc [GLOBALFLAGS] support profile              \
                         ALIAS                \
                         FILE                 \
                         [--comment "string"] \
                         [--enc]              \
                         [--issue integer]

Parameters

ALIAS

The alias <alias> of the MinIO deployment.

FILE

The path to the file to upload to SUBNET.

--comment

Include a message to the issue when uploading the file.

--enc

Encrypt contents of the upload. The key used for the encryption is only accessible to MinIO.

--issue

Specify the issue number to which to add the file. If not specified, the file uploads to the generic issue number 0.

Global Flags

Examples

Upload a file to an issue

This command uploads the file ./trace.log from the local file system to the SUBNET issue number 10001 for the deployment with alias minio1.

mc support upload --issue 10001 minio1 ./trace.log 

Upload a file to an issue with a comment for MinIO Engineers

This command uploads the file ./trace.log from the local file system to the SUBNET issue number 10001 for the deployment with alias minio1. The command also includes a comment available to MinIO Engineers about the file.

mc support upload --issue 10001 --comment "here is the requested trace log" minio1 ./trace.log