update documentation

remove link to metadata configuration from
devstack section. metadata is configured by plugin's
script for devstack and user doesn't require to
configure it by himself.
Add information how to configure metadata over SSL

Change-Id: I9ecfc10fed15a73417e840ddecac8a8a56d18601
Closes-Bug: #1739479
This commit is contained in:
Andrey Pavlov 2018-01-16 15:48:52 +03:00
parent be286470e5
commit ec59a03f95
2 changed files with 14 additions and 5 deletions

View File

@ -8,8 +8,3 @@ In order to install ec2-api with devstack the following should be added to the l
.. code-block:: ini
enable_plugin ec2-api https://git.openstack.org/openstack/ec2-api
Configuring OpenStack for EC2 API metadata service
---------------------------------------------------
.. include:: metadata-configuration.rst

View File

@ -12,3 +12,17 @@ To configure OpenStack for EC2 API metadata service for Neutron add:
to ``/etc/neutron/metadata_agent.ini``
then restart neutron-metadata service.
If you want to obtain metadata via SSL you need to configure neutron:
.. code-block:: ini
[DEFAULT]
nova_metadata_protocol = https
# in case of self-signed certs you may need to specify CA
auth_ca_cert = /path/to/root/cert/if/self/signed
# or skip certs checking
nova_metadata_insecure = True
And then you'll be able to get EC2-API/Nova metadata from neutron via SSL.
Anyway metadata URL inside the server still be http://169.254.169.254