diff options
author | tzumainn <tzumainn@redhat.com> | 2017-10-06 14:10:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-06 14:10:34 -0400 |
commit | ef2247cfd6e5825b6402e63337af975f9f356b4e (patch) | |
tree | 7933a861ee3cf82b043b6d8e33f0231d9588e36d /playbooks/provisioning/openstack/README.md | |
parent | 32bdbd5d790b370d808ec261559775d04d64e46d (diff) | |
parent | 3fb3db798d7f3d890f063315c8174e7252b9c054 (diff) | |
download | openshift-ef2247cfd6e5825b6402e63337af975f9f356b4e.tar.gz openshift-ef2247cfd6e5825b6402e63337af975f9f356b4e.tar.bz2 openshift-ef2247cfd6e5825b6402e63337af975f9f356b4e.tar.xz openshift-ef2247cfd6e5825b6402e63337af975f9f356b4e.zip |
Merge pull request #776 from tomassedovic/dynamic-inventory
Add dynamic inventory
Diffstat (limited to 'playbooks/provisioning/openstack/README.md')
-rw-r--r-- | playbooks/provisioning/openstack/README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/playbooks/provisioning/openstack/README.md b/playbooks/provisioning/openstack/README.md index 5e45add51..b96c9c9db 100644 --- a/playbooks/provisioning/openstack/README.md +++ b/playbooks/provisioning/openstack/README.md @@ -361,6 +361,19 @@ registry. Again in `OSEv3.yml`: The filesystem value here will be used in the initial formatting of the volume. +If you're using the dynamic inventory, you must uncomment these two values as +well: + + #openshift_hosted_registry_storage_openstack_volumeID: "{{ lookup('os_cinder', cinder_hosted_registry_name).id }}" + #openshift_hosted_registry_storage_volume_size: "{{ cinder_hosted_registry_size_gb }}Gi" + +But note that they use the `os_cinder` lookup plugin we provide, so you must +tell Ansible where to find it either in `ansible.cfg` (the one we provide is +configured properly) or by exporting the +`ANSIBLE_LOOKUP_PLUGINS=openshift-ansible-contrib/lookup_plugins` environment +variable. + + ### Use an existing Cinder volume for the OpenShift registry |