diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-14 15:23:38 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-14 15:23:38 -0400 |
commit | 0bc0d679e2d014d3ff088f524916828618c82976 (patch) | |
tree | df8044196f03de618ffdc722d109ee7a2a8404ca | |
parent | 67b364df0745ee6c5f744fca007152c44fd47e3b (diff) | |
download | openshift-0bc0d679e2d014d3ff088f524916828618c82976.tar.gz openshift-0bc0d679e2d014d3ff088f524916828618c82976.tar.bz2 openshift-0bc0d679e2d014d3ff088f524916828618c82976.tar.xz openshift-0bc0d679e2d014d3ff088f524916828618c82976.zip |
Updating the docker registry variables to use the new name
-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 |