From 32d607162be3885beef85baf5860edf6bc68f261 Mon Sep 17 00:00:00 2001 From: jiuker Date: Sun, 23 Jun 2024 01:17:14 +0800 Subject: [PATCH] remove doc remove doc --- docs/minio-job.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/minio-job.md b/docs/minio-job.md index f5bdc5e0bf6..168538678e4 100644 --- a/docs/minio-job.md +++ b/docs/minio-job.md @@ -161,7 +161,7 @@ op: make-bucket args: name: memes ``` -Will do a job like `mc mb myminio/memes --insecure` +Will do a job like `mc mb myminio/memes` ```yaml name: add-my-policy op: admin/policy/create @@ -179,7 +179,7 @@ volumes: - key: policy.json path: policy.json ``` -Will do a job like `mc admin policy create myminio memes-access /temp/policy.json --insecure` +Will do a job like `mc admin policy create myminio memes-access /temp/policy.json` ### command The `command` field specifies the command that will be executed by the `mc` command. `args` must be empty. And `op` can be set to the main command name. @@ -189,9 +189,8 @@ command: - "mc" - "stat" - "myminio/memes" - - "--insecure" ``` -Will do a job like `mc stat myminio/memes --insecure` +Will do a job like `mc stat myminio/memes` ### env/envFrom/volumeMounts/volumes The `env/envFrom/volumeMounts/volumes` fields specify the environment variables/volumes that will be used by the `mc` command ### resources