-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OADP-682 Support for insecure TLS connections
OCP
- Loading branch information
1 parent
6395108
commit 2f63a89
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Module included in the following assemblies: | ||
// * backup_and_restore/application_backup_and_restore/troubleshooting.adoc | ||
|
||
:_mod-docs-content-type: PROCEDURE | ||
[id="support-insecure-tls-connections_{context}"] | ||
= Using must-gather with insecure TLS connections | ||
|
||
If a custom CA certificate is used, the `must-gather` pod fails to grab the output for `velero logs/describe`. To use the `must-gather` tool with insecure TLS connections, you can pass the `gather_without_tls` flag to the `must-gather` command. | ||
|
||
.Procedure | ||
* Pass the `gather_without_tls` flag, with value set to `true`, to the `must-gather` tool by using the following command: | ||
[source,terminal] | ||
---- | ||
$ oc adm must-gather --image=registry.redhat.io/oadp/oadp-mustgather-rhel9:v1.3 -- /usr/bin/gather_without_tls <true/false> | ||
---- | ||
|
||
By default, the flag value is set to `false`. Set the value to `true` to allow insecure TLS connections. |