此内容没有您所选择的语言版本。
Chapter 7. Domains
This chapter provides information on API resources to add, update, and manage OpenShift user domains. A domain must be created before OpenShift applications can be created. Domain names on OpenShift are non-strict, meaning there is no preceding period, and form part of the application name. Therefore, the syntax for the application name is ApplicationName-DomainName.rhcloud.com.
The following table describes each parameter associated with an OpenShift domain.
Expand
Name | Description |
---|---|
name | Name of the domain |
suffix | Domain suffix |
allowed_gear_sizes | Array of zero or more gear sizes allowed on this domain |
7.1. Create a Domain 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
Description
Create a new domain for an OpenShift user account. Note that a domain is required to create applications on OpenShift Enterprise.
Method and URL Structure
Method | URL Structure |
---|---|
POST | /broker/rest/domains |
Request Parameters
Name | Description | Required | Default |
---|---|---|---|
name | Name of domain | Yes | |
allowed_gear_sizes | List of gear sizes that can be created on this domain | No |
See Section A.3, “Domains” for more information about the valid options applicable to these request parameters.
Request
{ "name": "mydomain", "allowed_gear_sizes": "small" }
{
"name": "mydomain",
"allowed_gear_sizes": "small"
}
cURL Command Example
curl -X POST https://openshift.redhat.com/broker/rest/domains/ --user user@example.com:password --data-urlencode name=mydomain --data-urlencode allowed_gear_sizes=small
$ curl -X POST https://openshift.redhat.com/broker/rest/domains/ --user user@example.com:password --data-urlencode name=mydomain --data-urlencode allowed_gear_sizes=small
JSON Response
The API returns the domain resource with related resource links which have been left out for brevity. See Chapter 7, Domains for more information on all domain parameters.