Add missing hostname config options

Only os-public-hostname was in the config.yaml. Add the missing
os-internal-hostname and os-admin-hostname to config.yaml. The rest of
the code DTRT with these config options.

Change-Id: I91b814db1ab5eef765abffea0f2f4359a9ff639d
This commit is contained in:
David Ames 2017-08-21 14:50:41 -07:00
parent 83f22ed3e6
commit 3d6e2b6fe8
1 changed files with 28 additions and 4 deletions

View File

@ -27,14 +27,38 @@ options:
type: string
default:
description: |
The hostname or address of the public endpoints created for neutron-api
in the keystone identity provider.
The hostname or address of the public endpoints created in the keystone
identity provider.
.
This value will be used for public endpoints. For example, an
os-public-hostname set to 'neutron-api.example.com' with ssl enabled
os-public-hostname set to 'api-public.example.com' with ssl enabled
will create the following endpoint for neutron-api:
.
https://neutron-api.example.com:9696/
https://api-public.example.com:9696/
os-internal-hostname:
type: string
default:
description: |
The hostname or address of the internal endpoints created in the keystone
identity provider.
.
This value will be used for internal endpoints. For example, an
os-internal-hostname set to 'api-internal.example.com' with ssl enabled
will create the following endpoint for neutron-api:
.
https://api-internal.example.com:9696/
os-admin-hostname:
type: string
default:
description: |
The hostname or address of the admin endpoints created in the keystone
identity provider.
.
This value will be used for admin endpoints. For example, an
os-admin-hostname set to 'api-admin.example.com' with ssl enabled
will create the following endpoint for neutron-api:
.
https://api-admin.example.com:9696/
region:
default: RegionOne
type: string