Skip to content

must-gather on oadp 1.4 for ocp 4.15 4.14 #95637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: enterprise-4.15
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions modules/using-must-gather.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ $ oc adm must-gather --image={must-gather-v1-3} -- /usr/bin/gather --request-tim
+
[source,terminal,subs="attributes+"]
----
$ oc adm must-gather --image={must-gather-v1-4} -- /usr/bin/gather_with_timeout <timeout> # <1>
$ oc adm must-gather --image={must-gather-v1-4} -- /usr/bin/gather --request-timeout 1m # <1>
----
<1> Specify a timeout value in seconds.
<1> In this example, the timeout is 1 minute.

* To use the insecure TLS connection flag with the `must-gather` tool, run one of the following commands:

Expand All @@ -72,9 +72,8 @@ $ oc adm must-gather --image={must-gather-v1-3} -- /usr/bin/gather --skip-tls
+
[source,terminal,subs="attributes+"]
----
$ oc adm must-gather --image={must-gather-v1-4} -- /usr/bin/gather_without_tls <value> # <1>
$ oc adm must-gather --image={must-gather-v1-4} -- /usr/bin/gather --skip-tls
----
<1> By default, the value is `false`. Set to `true` to allow insecure TLS connections.

* To use a combination of the insecure TLS connection, and the timeout flags with the `must-gather` tool, run one of the following commands:

Expand All @@ -90,9 +89,9 @@ $ oc adm must-gather --image={must-gather-v1-3} -- /usr/bin/gather --request-tim
+
[source,terminal,subs="attributes+"]
----
$ oc adm must-gather --image={must-gather-v1-4} --skip_tls=true /usr/bin/gather_with_timeout <timeout_value_in_seconds> #<1>
$ oc adm must-gather --image={must-gather-v1-4} -- /usr/bin/gather --request-timeout 15s --skip-tls #<1>
----
<1> By default, the `--skip-tls` flag value is `false`. Set the value to `true` to allow insecure TLS connections. Specify a timeout value.
<1> In this example, the timeout is 15 seconds. By default, the `--skip-tls` flag value is `false`. Set the value to `true` to allow insecure TLS connections.

.Verification

Expand Down