diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-05-19 19:57:05 -0400 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2016-05-19 19:57:05 -0400 |
commit | 02a4d70c55ba89bde345d82e0731c70626209ee0 (patch) | |
tree | ba8f76ca7928da60e3c005eb6d2df62426402d9d /inventory/byo/hosts.aep.example | |
parent | c78e91c7d4a304cc5d20135e96206008407c5f6f (diff) | |
download | openshift-02a4d70c55ba89bde345d82e0731c70626209ee0.tar.gz openshift-02a4d70c55ba89bde345d82e0731c70626209ee0.tar.bz2 openshift-02a4d70c55ba89bde345d82e0731c70626209ee0.tar.xz openshift-02a4d70c55ba89bde345d82e0731c70626209ee0.zip |
Clarify the example inventory related to proxies and builddefaults
Diffstat (limited to 'inventory/byo/hosts.aep.example')
-rw-r--r-- | inventory/byo/hosts.aep.example | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/inventory/byo/hosts.aep.example b/inventory/byo/hosts.aep.example index c31d39d59..5376dd353 100644 --- a/inventory/byo/hosts.aep.example +++ b/inventory/byo/hosts.aep.example @@ -394,14 +394,15 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', #openshift_generate_no_proxy_hosts=True # # These options configure the BuildDefaults admission controller which injects -# environment variables into Builds. These values will default to their -# corresponding values above but you may set them independently. See BuildDefaults +# environment variables into Builds. These values will default to the global proxy +# config values. You only need to set these if they differ from the global settings +# above. See BuildDefaults # documentation at https://docs.openshift.org/latest/admin_guide/build_defaults_overrides.html -#openshift_builddefaults_http_proxy=openshift_http_proxy -#openshift_builddefaults_https_proxy=openshift_https_proxy -#openshift_builddefaults_no_proxy=openshift_noproxy -#openshift_builddefaults_git_http_proxy=openshift_builddefaults_http_proxy -#openshift_builddefaults_git_https_proxy=openshift_builddefaults_https_proxy +#openshift_builddefaults_http_proxy=http://USER:PASSWORD@HOST:PORT +#openshift_builddefaults_https_proxy=https://USER:PASSWORD@HOST:PORT +#openshift_builddefaults_no_proxy=build_defaults +#openshift_builddefaults_git_http_proxy=http://USER:PASSWORD@HOST:PORT +#openshift_builddefaults_git_https_proxy=https://USER:PASSWORD@HOST:PORT # Or you may optionally define your own serialized as json #openshift_builddefaults_json='{"BuildDefaults":{"configuration":{"apiVersion":"v1","env":[{"name":"HTTP_PROXY","value":"http://proxy.example.com.redhat.com:3128"},{"name":"NO_PROXY","value":"ose3-master.example.com"}],"gitHTTPProxy":"http://proxy.example.com:3128","kind":"BuildDefaultsConfig"}}}' |