From 943a4d6bb414c61cd1008a57ec3e9a2baee20382 Mon Sep 17 00:00:00 2001 From: harshit saini <123226128+harshitsaini17@users.noreply.github.com> Date: Tue, 11 Aug 2026 01:30:54 +0530 Subject: [PATCH] docs: fix restore logs command name in self-signed-certificates (#10213) The list of commands supporting --insecure-skip-tls-verify referred to `velero restore log`, but the registered command is `velero restore logs` (pkg/cmd/cli/restore/logs.go). `velero restore log` silently falls through to the parent command's help text and exits 0, so a user following the docs gets no logs and no error. Fixes #10183 Signed-off-by: Harshit saini --- site/content/docs/main/self-signed-certificates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/main/self-signed-certificates.md b/site/content/docs/main/self-signed-certificates.md index 41eb8b247..87576dae2 100644 --- a/site/content/docs/main/self-signed-certificates.md +++ b/site/content/docs/main/self-signed-certificates.md @@ -150,7 +150,7 @@ Velero provides a way for you to skip TLS verification on the object store when * velero backup download * velero backup logs * velero restore describe -* velero restore log +* velero restore logs If true, the object store's TLS certificate will not be checked for validity before Velero or backup repository connects to the object storage. You can permanently skip TLS verification for an object store by setting `Spec.Config.InsecureSkipTLSVerify` to true in the [BackupStorageLocation](api-types/backupstoragelocation.md) CRD.