Skip to content

Commit 8de182c

Browse files
authored
Merge pull request #81352 from cainneri/patch-2
Need to add commands to export Cluster wide proxy variables
2 parents bca9ba0 + 13be331 commit 8de182c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

modules/backup-etcd.adoc

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,23 @@ $ oc debug --as-root node/<node_name>
4040
sh-4.4# chroot /host
4141
----
4242

43-
. If the cluster-wide proxy is enabled, be sure that you have exported the `NO_PROXY`, `HTTP_PROXY`, and `HTTPS_PROXY` environment variables.
43+
. If the cluster-wide proxy is enabled, export the `NO_PROXY`, `HTTP_PROXY`, and `HTTPS_PROXY` environment variables by running the following commands:
44+
+
45+
[source,terminal]
46+
----
47+
$ export HTTP_PROXY=http://<your_proxy.example.com>:8080
48+
----
49+
+
50+
[source,terminal]
51+
----
52+
$ export HTTPS_PROXY=https://<your_proxy.example.com>:8080
53+
----
54+
+
55+
[source,terminal]
56+
----
57+
$ export NO_PROXY=<example.com>
58+
----
59+
+
4460
4561
. Run the `cluster-backup.sh` script in the debug shell and pass in the location to save the backup to.
4662
+

0 commit comments

Comments
 (0)