Documentation

mc support upload

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

SUBNET Registration Required

The mc support commands are designed for MinIO deployments registered with MinIO pricing to ensure optimal outcome of diagnostics and performance testing. Deployments not registered with SUBNET cannot use the mc support commands.

The mc support profile command has the following syntax:

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

The alias of the MinIO deployment.

Required

The path to the file to upload to SUBNET.

Optional

Include a message to the issue when uploading the file.

Optional

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

Optional

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

This command supports any of the global flags.

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

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