diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-14 16:47:22 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-14 16:47:22 -0400 |
commit | 23460f961b1a26ed71a5738758088572c4bc6d5e (patch) | |
tree | 72122b2a026d453cbe4ad9d9d578bcf41a96b6a7 /utils/src/ooinstall | |
parent | 03e5be7ff92c662a7a8278ed2a13c5068855a187 (diff) | |
parent | 0bc0d679e2d014d3ff088f524916828618c82976 (diff) | |
download | openshift-23460f961b1a26ed71a5738758088572c4bc6d5e.tar.gz openshift-23460f961b1a26ed71a5738758088572c4bc6d5e.tar.bz2 openshift-23460f961b1a26ed71a5738758088572c4bc6d5e.tar.xz openshift-23460f961b1a26ed71a5738758088572c4bc6d5e.zip |
Merge pull request #1597 from brenton/master
Bug 1316761 - Skip the available version check if openshift_image_tag…
Diffstat (limited to 'utils/src/ooinstall')
-rw-r--r-- | utils/src/ooinstall/openshift_ansible.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/src/ooinstall/openshift_ansible.py b/utils/src/ooinstall/openshift_ansible.py index 04cccf89d..2b95702bf 100644 --- a/utils/src/ooinstall/openshift_ansible.py +++ b/utils/src/ooinstall/openshift_ansible.py @@ -38,10 +38,10 @@ def generate_inventory(hosts): base_inventory.write('deployment_type={}\n'.format(ver.ansible_key)) if 'OO_INSTALL_ADDITIONAL_REGISTRIES' in os.environ: - base_inventory.write('cli_docker_additional_registries={}\n' + base_inventory.write('openshift_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' + base_inventory.write('openshift_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 |