diff options
| author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-05 09:47:50 -0500 | 
|---|---|---|
| committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-05 12:33:14 -0500 | 
| commit | dcd2fb0558c58fb79f9e3dd9ecd5f6687d8bed5d (patch) | |
| tree | 762f7728fcbcde920571139507bf13e5bafdbc43 | |
| parent | cfca7b9f7894e2b427ae0753477cd13cc537e348 (diff) | |
Making it easier to use pre-release content
| -rw-r--r-- | utils/src/ooinstall/openshift_ansible.py | 21 | 
1 files changed, 11 insertions, 10 deletions
diff --git a/utils/src/ooinstall/openshift_ansible.py b/utils/src/ooinstall/openshift_ansible.py index 4b37be278..0648df0fa 100644 --- a/utils/src/ooinstall/openshift_ansible.py +++ b/utils/src/ooinstall/openshift_ansible.py @@ -31,17 +31,18 @@ def generate_inventory(hosts):          version=CFG.settings.get('variant_version', None))[1]      base_inventory.write('deployment_type={}\n'.format(ver.ansible_key)) -    if 'OO_INSTALL_DEVEL_REGISTRY' in os.environ: -        base_inventory.write('oreg_url=rcm-img-docker01.build.eng.bos.redhat.com:' -            '5001/openshift3/ose-${component}:${version}\n') -    if 'OO_INSTALL_PUDDLE_REPO_ENABLE' in os.environ: -        base_inventory.write("openshift_additional_repos=[{'id': 'ose-devel', " +    if 'OO_INSTALL_ADDITIONAL_REGISTRIES' in os.environ: +        base_inventory.write('cli_docker_additional_registries={}\n' +          .format(os.environ['OO_INSTALL_ADDITIONAL_REGISTRIES'])) +    if 'OO_INSTALL_INSECURE_REGISTRIES' in os.environ: +        base_inventory.write('cli_docker_insecure_registries={}\n' +          .format(os.environ['OO_INSTALL_INSECURE_REGISTRIES'])) +    if 'OO_INSTALL_PUDDLE_REPO' in os.environ: +        # We have to double the '{' here for literals +        base_inventory.write("openshift_additional_repos=[{{'id': 'ose-devel', "              "'name': 'ose-devel', " -            "'baseurl': 'http://buildvm-devops.usersys.redhat.com" -            "/puddle/build/AtomicOpenShift/3.1/latest/RH7-RHAOS-3.1/$basearch/os', " -            "'enabled': 1, 'gpgcheck': 0}]\n") -    if 'OO_INSTALL_STAGE_REGISTRY' in os.environ: -        base_inventory.write('oreg_url=registry.access.stage.redhat.com/openshift3/ose-${component}:${version}\n') +            "'baseurl': '{}', " +            "'enabled': 1, 'gpgcheck': 0}}]\n".format(os.environ['OO_INSTALL_PUDDLE_REPO']))      base_inventory.write('\n[masters]\n')      masters = (host for host in hosts if host.master)  | 
