This commit does the following: - sets all shell prompts in code-blocks to the root prompt - uses shell-session code-block since the shell prompt was being treated as a comment - links configure-aodh.rst in configure.rst (running tox was complaining that this file wasn't being linked anywhere) - other minor cleanup Change-Id: I9e3ac8bb0cabd1cc17952cfd765dbb0d8f7b6fa2
1.2 KiB
Home OpenStack-Ansible Installation Guide
NFS back-end
If the NetApp back end is configured to use an NFS storage protocol,
edit /etc/openstack_deploy/openstack_user_config.yml, and
configure the NFS client on each storage node that will use it.
Add the
cinder_backendsstanza (which includescinder_nfs_client) under thecontainer_varsstanza for each storage node:container_vars: cinder_backends: cinder_nfs_client:Configure the location of the file that lists shares available to the block storage service. This configuration file must include
nfs_shares_config:nfs_shares_config: SHARE_CONFIGReplace
SHARE_CONFIGwith the location of the share configuration file. For example,/etc/cinder/nfs_shares.Configure one or more NFS shares:
shares: - { ip: "NFS_HOST", share: "NFS_SHARE" }Replace
NFS_HOSTwith the IP address or hostname of the NFS server, and theNFS_SHAREwith the absolute path to an existing and accessible NFS share.