You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You must use the `rosa` CLI to remove the proxy's address from your cluster.
10
+
11
+
.Prerequisites
12
+
13
+
* You must have cluster administrator privileges.
14
+
* You have installed the {product-title}`rosa` CLI tool.
15
+
16
+
.Procedure
17
+
18
+
* Use the `rosa edit` command to modify the proxy. You must pass empty strings to the `--http-proxy` and `--https-proxy` arguments to clear the proxy from the cluster:
19
+
+
20
+
[source,terminal]
21
+
----
22
+
$ rosa edit cluster -c <cluster_name> --http-proxy "" --https-proxy ""
23
+
----
24
+
+
25
+
[NOTE]
26
+
====
27
+
While your proxy might only use one of the proxy arguments, the empty fields are ignored, so passing empty strings to both the `--http-proxy` and `--https-proxy` arguments do not cause any issues.
28
+
====
29
+
+
30
+
.Example Output
31
+
+
32
+
[source,yaml]
33
+
----
34
+
I: Updated cluster <cluster_name>
35
+
----
36
+
37
+
.Verification
38
+
39
+
* You can verify that the proxy has been removed from the cluster by using the `rosa describe` command:
40
+
+
41
+
[source,yaml]
42
+
----
43
+
$ rosa describe cluster -c <cluster_name>
44
+
----
45
+
+
46
+
Before removal, the proxy IP displays in a proxy section:
47
+
+
48
+
[source,yaml]
49
+
----
50
+
Name: <cluster_name>
51
+
ID: <cluster_internal_id>
52
+
External ID: <cluster_external_id>
53
+
OpenShift Version: 4.11.9
54
+
Channel Group: stable
55
+
DNS: <dns>
56
+
AWS Account: <aws_account_id>
57
+
API URL: <api_url>
58
+
Console URL: <console_url>
59
+
Region: us-east-1
60
+
Multi-AZ: false
61
+
Nodes:
62
+
- Control plane: 3
63
+
- Infra: 2
64
+
- Compute: 2
65
+
Network:
66
+
- Type: OVNKubernetes
67
+
- Service CIDR: <service_cidr>
68
+
- Machine CIDR: <machine_cidr>
69
+
- Pod CIDR: <pod_cidr>
70
+
- Host Prefix: <host_prefix>
71
+
Proxy:
72
+
- HTTPProxy: <proxy_url>
73
+
Additional trust bundle: REDACTED
74
+
----
75
+
+
76
+
After removing the proxy, the proxy section is removed:
You can configure an HTTP or HTTPS proxy when you install an {product-title} with Customer Cloud Subscription (CCS) cluster into an existing Virtual Private Cloud (VPC). You can configure the proxy during installation by using {cluster-manager-first}.
You can configure an HTTP or HTTPS proxy when you install a {product-title} (ROSA) cluster into an existing Virtual Private Cloud (VPC). You can configure the proxy during installation by using {cluster-manager-first} or the ROSA CLI (`rosa`).
* xref:../osd_install_access_delete_cluster/creating-a-gcp-cluster.adoc#osd-create-gcp-cluster-ccs_osd-creating-a-cluster-on-gcp[Creating a cluster on GCP with CCS]
You can configure an HTTP or HTTPS proxy after you install an {product-title} with Customer Cloud Subscription (CCS) cluster into an existing Virtual Private Cloud (VPC). You can configure the proxy after installation by using {cluster-manager-first}.
You can configure an HTTP or HTTPS proxy after you install a {product-title} (ROSA) cluster into an existing Virtual Private Cloud (VPC). You can configure the proxy after installation by using {cluster-manager-first} or the ROSA CLI (`rosa`).
0 commit comments