forked from cloudfoundry/docs-bosh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openstack-registry.html.md.erb
29 lines (22 loc) · 1.01 KB
/
openstack-registry.html.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
title: Extended Registry configuration
---
<p class="note">Note: We are actively pursuing to remove the Registry to simplify BOSH architecture.</p>
[The default template](init-openstack.html#create-manifest) provided for bosh-init uses Registry and defaults it to IP source authentication. Due to certain networking configurations (NAT) IP source authentication may not work correctly, hence switching to basic authentication is necessary.
1. Configure the Registry and the OpenStack CPI to use basic authentication by setting `registry.endpoint`
```yaml
properties:
registry:
address: PRIVATE-IP
host: PRIVATE-IP
db: *db
http: {user: admin, password: admin-password, port: 25777}
username: admin
password: admin-password
port: 25777
endpoint: http://admin:admin-password@PRIVATE-IP:25777 # <---
```
1. Deploy the Director
---
[Back to Table of Contents](index.html#cpi-config)
Previous: [Using Keystone API v3](openstack-keystonev3.html)