@itentialopensource/adapter-openstack_neutron 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUTH.md +11 -6
- package/CHANGELOG.md +10 -0
- package/package.json +1 -1
- package/refs?service=git-upload-pack +0 -0
package/AUTH.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
This document will go through the steps for authenticating the Openstack_neutron adapter with Basic Authentication. Properly configuring the properties for an adapter in IAP is critical for getting the adapter online. You can read more about adapter authentication <a href="https://www.itential.com/automation-platform/integrations/adapters-resources/authentication/" target="_blank">HERE</a>.
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
|
|
5
|
+
### Request Token Authentication
|
|
6
|
+
If you change authentication methods, you should change this section accordingly and merge it back into the adapter repository.
|
|
7
7
|
|
|
8
8
|
STEPS
|
|
9
9
|
1. Ensure you have access to a Openstack_neutron server and that it is running
|
|
@@ -12,8 +12,8 @@ STEPS
|
|
|
12
12
|
```json
|
|
13
13
|
"authentication": {
|
|
14
14
|
"auth_method": "request_token",
|
|
15
|
-
"username": "
|
|
16
|
-
"password": "
|
|
15
|
+
"username": "<username>",
|
|
16
|
+
"password": "<password>",
|
|
17
17
|
"token": "",
|
|
18
18
|
"token_timeout": 600000,
|
|
19
19
|
"token_cache": "local",
|
|
@@ -26,11 +26,16 @@ STEPS
|
|
|
26
26
|
"grant_type": "",
|
|
27
27
|
"os_user_domain_name": "Default",
|
|
28
28
|
"os_project_name": "admin",
|
|
29
|
-
"os_project_domain_name": "Default"
|
|
29
|
+
"os_project_domain_name": "Default",
|
|
30
|
+
"sso": {
|
|
31
|
+
"protocol": "https",
|
|
32
|
+
"host": "<host>",
|
|
33
|
+
"port": 5000
|
|
34
|
+
}
|
|
30
35
|
}
|
|
31
36
|
|
|
32
37
|
```
|
|
33
|
-
4.
|
|
38
|
+
4. `sso` can be configured with keystone auth data in the authentication section of the adapter config as shown above. Optionally, it can also be configured in .system/action.json.
|
|
34
39
|
5. Restart the adapter. If your properties were set correctly, the adapter should go online.
|
|
35
40
|
|
|
36
41
|
### Troubleshooting
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-openstack_neutron",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "This adapter integrates with system described as: Openstack Networking (Neutron) Service",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Openstack Neutron",
|
|
Binary file
|