이 콘텐츠는 선택한 언어로 제공되지 않습니다.
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.