apiVersion: config.openshift.io/v1
kind: proxy
metadata:
name: cluster
spec:
trustedCA:
name: ""
status:
Production environments can deny direct access to the Internet and instead have an HTTP or HTTPS proxy available. You can configure OpenShift Container Platform to use a proxy by modifying the proxy object for existing clusters or by configuring the proxy settings in the install-config.yaml
file for new clusters.
The cluster-wide proxy is only supported if you used a user-provisioned infrastructure installation or provide your own networking, such as a virtual private cloud or virual network, for a supported provider. |
Review the sites that your cluster requires access to and determine whether any of them must bypass the proxy. By default, all cluster system egress traffic is proxied, including calls to the cloud provider API for the cloud that hosts your cluster. System-wide proxy affects system components only, not user workloads. Add sites to the proxy object’s spec.noproxy
field to bypass the proxy if necessary.
The proxy object For installations on Amazon Web Services (AWS), Google Cloud Platform (GCP), Microsoft Azure, and Red Hat OpenStack Platform (RHOSP), the |
The proxy object is used to manage the cluster-wide egress proxy. When a cluster is
installed or upgraded without the proxy configured, a proxy object is still
generated but it will have a nil spec
. For example:
apiVersion: config.openshift.io/v1
kind: proxy
metadata:
name: cluster
spec:
trustedCA:
name: ""
status:
A cluster administrator can configure the proxy for OpenShift Container Platform by modifying
this cluster
proxy object.
Only the proxy object named |
Cluster administrator permissions
OpenShift Container Platform oc
CLI tool installed
Create a ConfigMap that contains any additional CA certificates required for proxying HTTPS connections.
You can skip this step if the proxy’s identity certificate is signed by an authority from the RHCOS trust bundle. |
Create a file called user-ca-bundle.yaml
with the following contents, and provide the values of your PEM-encoded certificates:
apiVersion: v1
data:
ca-bundle.crt: | (1)
<MY_PEM_ENCODED_CERTS> (2)
kind: ConfigMap
metadata:
name: user-ca-bundle (3)
namespace: openshift-config (4)
1 | This data key must be named ca-bundle.crt . |
2 | One or more PEM-encoded X.509 certificates used to sign the proxy’s identity certificate. |
3 | The ConfigMap name that will be referenced from the proxy object. |
4 | The ConfigMap must be in the openshift-config namespace. |
Create the ConfigMap from this file:
$ oc create -f user-ca-bundle.yaml
Use the oc edit
command to modify the proxy object:
$ oc edit proxy/cluster
Configure the necessary fields for the proxy:
apiVersion: config.openshift.io/v1
kind: proxy
metadata:
name: cluster
spec:
httpproxy: http://<username>:<pswd>@<ip>:<port> (1)
httpsproxy: http://<username>:<pswd>@<ip>:<port> (2)
noproxy: example.com (3)
readinessEndpoints:
- http://www.google.com (4)
- https://www.google.com
trustedCA:
name: user-ca-bundle (5)
1 | A proxy URL to use for creating HTTP connections outside the cluster. The
URL scheme must be http . |
2 | A proxy URL to use for creating HTTPS connections outside the cluster. If
this is not specified, then httpproxy is used for both HTTP and HTTPS
connections. |
3 | A comma-separated list of destination domain names, domains, IP addresses or
other network CIDRs to exclude proxying.
Preface a domain with This field is ignored if neither the |
4 | One or more URLs external to the cluster to use to perform a readiness check
before writing the httpproxy and httpsproxy values to status. |
5 | A reference to the ConfigMap in the openshift-config namespace that
contains additional CA certificates required for proxying HTTPS connections.
Note that the ConfigMap must already exist before referencing it here. This
field is required unless the proxy’s identity certificate is signed by an
authority from the RHCOS trust bundle. |
Save the file to apply the changes.
The URL scheme must be |
The cluster
proxy object cannot be deleted. To remove the proxy from a cluster,
remove all spec
fields from the proxy object.
Cluster administrator permissions
OpenShift Container Platform oc
CLI tool installed
Use the oc edit
command to modify the proxy:
$ oc edit proxy/cluster
Remove all spec
fields from the proxy object. For example:
apiVersion: config.openshift.io/v1
kind: proxy
metadata:
name: cluster
spec: {}
status: {}
Save the file to apply the changes.