diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-08-29 10:13:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-29 10:13:15 -0400 |
commit | 5e32de3e8e9b302dbc9f4ba26985380197ac4171 (patch) | |
tree | b4c74790895dab78bcd3f2f2865032010a15f338 /inventory | |
parent | 4338dce09dbe5497f2a3700992eb4c5afeb4e6f6 (diff) | |
parent | 5815311c8fbad15fe23691e010ce7e4a132f6e7c (diff) | |
download | openshift-5e32de3e8e9b302dbc9f4ba26985380197ac4171.tar.gz openshift-5e32de3e8e9b302dbc9f4ba26985380197ac4171.tar.bz2 openshift-5e32de3e8e9b302dbc9f4ba26985380197ac4171.tar.xz openshift-5e32de3e8e9b302dbc9f4ba26985380197ac4171.zip |
Merge pull request #5128 from mgugino-upstream-stage/reg-auth
Add independent registry auth support
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/byo/hosts.ose.example | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/inventory/byo/hosts.ose.example b/inventory/byo/hosts.ose.example index c36dca971..c55eb9b3f 100644 --- a/inventory/byo/hosts.ose.example +++ b/inventory/byo/hosts.ose.example @@ -170,6 +170,14 @@ openshift_release=v3.6 # modify image streams to point at that registry by setting the following to true #openshift_examples_modify_imagestreams=true +# If oreg_url points to a registry requiring authentication, provide the following: +#oreg_auth_user=some_user +#oreg_auth_password='my-pass' +# NOTE: oreg_url must be defined by the user for oreg_auth_* to have any affect. +# oreg_auth_pass should be generated from running docker login. +# To update registry auth credentials, uncomment the following: +#oreg_auth_credentials_replace: True + # OpenShift repository configuration #openshift_additional_repos=[{'id': 'ose-devel', 'name': 'ose-devel', 'baseurl': 'http://example.com/puddle/build/AtomicOpenShift/3.1/latest/RH7-RHOSE-3.0/$basearch/os', 'enabled': 1, 'gpgcheck': 0}] #openshift_repos_enable_testing=false |