Add some notes about wildcard domains in nonProxyHosts field (#476)

Signed-off-by: Anatolii Bazko <abazko@redhat.com>
pull/480/head
Anatolii Bazko 2020-09-29 09:52:08 +03:00 committed by GitHub
parent dbb2c61b6f
commit 87c0b2b80a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 21 additions and 17 deletions

View File

@ -435,15 +435,16 @@ spec:
particular configuration for Git.
type: boolean
nonProxyHosts:
description: List of hosts that should not use the configured proxy.
Use `|`` as delimiter, eg `localhost|my.host.com|123.42.12.32`
description: 'List of hosts that should not use the configured proxy.
So specify wild card domain use the following form `.<DOMAIN>`
and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32`
Only use when configuring a proxy is required. Operator respects
OpenShift cluster wide proxy configuration and no additional configuration
is required, but defining `nonProxyHosts` in a custom resource
leads to merging non proxy hosts lists from the cluster proxy
configuration and ones defined in the custom resources. (see the
doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html)
(see also the `proxyURL` fields).
(see also the `proxyURL` fields).'
type: string
pluginRegistryImage:
description: Overrides the container image used in the Plugin registry

View File

@ -52,13 +52,13 @@ metadata:
categories: Developer Tools
certified: "false"
containerImage: quay.io/eclipse/che-operator:nightly
createdAt: "2020-09-25T09:17:34Z"
createdAt: "2020-09-28T07:48:12Z"
description: A Kube-native development solution that delivers portable and collaborative
developer workspaces.
operatorframework.io/suggested-namespace: eclipse-che
repository: https://github.com/eclipse/che-operator
support: Eclipse Foundation
name: eclipse-che-preview-kubernetes.v7.20.0-9.nightly
name: eclipse-che-preview-kubernetes.v7.20.0-10.nightly
namespace: placeholder
spec:
apiservicedefinitions: {}
@ -402,4 +402,4 @@ spec:
maturity: stable
provider:
name: Eclipse Foundation
version: 7.20.0-9.nightly
version: 7.20.0-10.nightly

View File

@ -435,15 +435,16 @@ spec:
particular configuration for Git.
type: boolean
nonProxyHosts:
description: List of hosts that should not use the configured proxy.
Use `|`` as delimiter, eg `localhost|my.host.com|123.42.12.32`
description: 'List of hosts that should not use the configured proxy.
So specify wild card domain use the following form `.<DOMAIN>`
and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32`
Only use when configuring a proxy is required. Operator respects
OpenShift cluster wide proxy configuration and no additional configuration
is required, but defining `nonProxyHosts` in a custom resource
leads to merging non proxy hosts lists from the cluster proxy
configuration and ones defined in the custom resources. (see the
doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html)
(see also the `proxyURL` fields).
(see also the `proxyURL` fields).'
type: string
pluginRegistryImage:
description: Overrides the container image used in the Plugin registry

View File

@ -49,13 +49,13 @@ metadata:
categories: Developer Tools, OpenShift Optional
certified: "false"
containerImage: quay.io/eclipse/che-operator:nightly
createdAt: "2020-09-25T09:17:35Z"
createdAt: "2020-09-28T07:48:12Z"
description: A Kube-native development solution that delivers portable and collaborative
developer workspaces in OpenShift.
operatorframework.io/suggested-namespace: eclipse-che
repository: https://github.com/eclipse/che-operator
support: Eclipse Foundation
name: eclipse-che-preview-openshift.v7.20.0-9.nightly
name: eclipse-che-preview-openshift.v7.20.0-10.nightly
namespace: placeholder
spec:
apiservicedefinitions: {}
@ -435,4 +435,4 @@ spec:
maturity: stable
provider:
name: Eclipse Foundation
version: 7.20.0-9.nightly
version: 7.20.0-10.nightly

View File

@ -435,15 +435,16 @@ spec:
particular configuration for Git.
type: boolean
nonProxyHosts:
description: List of hosts that should not use the configured proxy.
Use `|`` as delimiter, eg `localhost|my.host.com|123.42.12.32`
description: 'List of hosts that should not use the configured proxy.
So specify wild card domain use the following form `.<DOMAIN>`
and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32`
Only use when configuring a proxy is required. Operator respects
OpenShift cluster wide proxy configuration and no additional configuration
is required, but defining `nonProxyHosts` in a custom resource
leads to merging non proxy hosts lists from the cluster proxy
configuration and ones defined in the custom resources. (see the
doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html)
(see also the `proxyURL` fields).
(see also the `proxyURL` fields).'
type: string
pluginRegistryImage:
description: Overrides the container image used in the Plugin registry

View File

@ -220,7 +220,8 @@ type CheClusterSpecServer struct {
// (see also the `proxyURL` and `nonProxyHosts` fields).
// +optional
ProxyPort string `json:"proxyPort,omitempty"`
// List of hosts that should not use the configured proxy. Use `|`` as delimiter, eg `localhost|my.host.com|123.42.12.32`
// List of hosts that should not use the configured proxy.
// So specify wild card domain use the following form `.<DOMAIN>` and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32`
// Only use when configuring a proxy is required.
// Operator respects OpenShift cluster wide proxy configuration and no additional configuration is required,
// but defining `nonProxyHosts` in a custom resource leads to merging non proxy hosts lists from the

View File

@ -648,7 +648,7 @@ func schema_pkg_apis_org_v1_CheClusterSpecServer(ref common.ReferenceCallback) c
},
"nonProxyHosts": {
SchemaProps: spec.SchemaProps{
Description: "List of hosts that should not use the configured proxy. Use `|`` as delimiter, eg `localhost|my.host.com|123.42.12.32` Only use when configuring a proxy is required. Operator respects OpenShift cluster wide proxy configuration and no additional configuration is required, but defining `nonProxyHosts` in a custom resource leads to merging non proxy hosts lists from the cluster proxy configuration and ones defined in the custom resources. (see the doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html) (see also the `proxyURL` fields).",
Description: "List of hosts that should not use the configured proxy. So specify wild card domain use the following form `.<DOMAIN>` and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32` Only use when configuring a proxy is required. Operator respects OpenShift cluster wide proxy configuration and no additional configuration is required, but defining `nonProxyHosts` in a custom resource leads to merging non proxy hosts lists from the cluster proxy configuration and ones defined in the custom resources. (see the doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html) (see also the `proxyURL` fields).",
Type: []string{"string"},
Format: "",
},