Update deployment samples

* Updated samples of ExistingCloud deployment

Change-Id: Ief7892ae73a8b8a5a0c8f184addac127b0e7fd35
This commit is contained in:
Anton Studenov 2017-03-21 22:32:45 +03:00
parent c7b48f3893
commit a926825215
4 changed files with 68 additions and 52 deletions

View File

@ -1,15 +1,19 @@
{ {
"type": "ExistingCloud", "type": "ExistingCloud",
"auth_url": "http://example.net:5000/v3/", "creds": {
"region_name": "RegionOne", "openstack": {
"endpoint_type": "public", "auth_url": "http://example.net:5000/v3/",
"admin": { "region_name": "RegionOne",
"username": "admin", "endpoint_type": "public",
"password": "myadminpass", "admin": {
"user_domain_name": "admin", "username": "admin",
"project_name": "admin", "password": "myadminpass",
"project_domain_name": "admin" "user_domain_name": "admin",
}, "project_name": "admin",
"https_insecure": false, "project_domain_name": "admin"
"https_cacert": "" },
"https_insecure": false,
"https_cacert": ""
}
}
} }

View File

@ -1,14 +1,18 @@
{ {
"type": "ExistingCloud", "type": "ExistingCloud",
"auth_url": "http://example.net:5000/v2.0/", "creds": {
"region_name": "RegionOne", "openstack": {
"endpoint_type": "public", "auth_url": "http://example.net:5000/v2.0/",
"endpoint": "http://<public-identity-url-ip>:<mgmt-port>/<version>/ example: http://172.16.0.2:35357/v2.0/", "region_name": "RegionOne",
"admin": { "endpoint_type": "public",
"username": "admin", "endpoint": "http://<public-identity-url-ip>:<mgmt-port>/<version>/ example: http://172.16.0.2:35357/v2.0/",
"password": "pa55word", "admin": {
"tenant_name": "demo" "username": "admin",
}, "password": "pa55word",
"https_insecure": false, "tenant_name": "demo"
"https_cacert": "" },
"https_insecure": false,
"https_cacert": ""
}
}
} }

View File

@ -1,23 +1,27 @@
{ {
"type": "ExistingCloud", "type": "ExistingCloud",
"auth_url": "http://example.net:5000/v2.0/", "creds": {
"region_name": "RegionOne", "openstack": {
"endpoint_type": "public", "auth_url": "http://example.net:5000/v2.0/",
"admin": { "region_name": "RegionOne",
"username": "admin", "endpoint_type": "public",
"password": "pa55word", "admin": {
"tenant_name": "demo" "username": "admin",
}, "password": "pa55word",
"users": [ "tenant_name": "demo"
{ },
"username": "not_an_admin1", "users": [
"password": "password", {
"tenant_name": "some_tenant" "username": "not_an_admin1",
}, "password": "password",
{ "tenant_name": "some_tenant"
"username": "not_an_admin2", },
"password": "password2", {
"tenant_name": "some_tenant2" "username": "not_an_admin2",
"password": "password2",
"tenant_name": "some_tenant2"
}
]
} }
] }
} }

View File

@ -1,13 +1,17 @@
{ {
"type": "ExistingCloud", "type": "ExistingCloud",
"auth_url": "http://example.net:5000/v2.0/", "creds": {
"region_name": "RegionOne", "openstack": {
"endpoint_type": "public", "auth_url": "http://example.net:5000/v2.0/",
"admin": { "region_name": "RegionOne",
"username": "admin", "endpoint_type": "public",
"password": "myadminpass", "admin": {
"tenant_name": "demo" "username": "admin",
}, "password": "myadminpass",
"https_insecure": false, "tenant_name": "demo"
"https_cacert": "" },
"https_insecure": false,
"https_cacert": ""
}
}
} }