创建pvc(待废弃)-九游平台
功能介绍
该api用于在指定的namespace下通过云存储服务中的云存储(evs、sfs、obs)去创建pvc(persistentvolumeclaim)。该api待废弃,请使用kubernetes pvc相关接口。
存储管理的url格式为:https://{clusterid}.endpoint/uri。其中{clusterid}为集群id,uri为资源路径,也即api访问的路径。如果使用https://endpoint/uri,则必须指定请求header中的x-cluster-id参数。
调用方法
请参见。
uri
post /api/v1/namespaces/{namespace}/cloudpersistentvolumeclaims
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
namespace |
是 |
string |
指定persistentvolumeclaim所在的命名空间。 使用namespace有如下约束:
|
请求参数
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
content-type |
是 |
string |
消息体的类型(格式) |
x-auth-token |
是 |
string |
调用接口的认证方式分为token和ak/sk两种,如果您使用的token方式,此参数为必填,请填写token的值,获取方式请参见。 |
x-cluster-id |
否 |
string |
集群id,使用https://endpoint/uri这种url格式时必须指定此参数。获取方式请参见。 |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
apiversion |
是 |
string |
api版本,固定值v1 |
kind |
是 |
string |
api类型,固定值persistentvolumeclaim |
metadata |
是 |
metadata是集群对象的元数据定义,是集合类的元素类型,包含一组由不同名称定义的属性。 |
|
spec |
是 |
persistentvolumeclaimspec object |
spec是集合类的元素类型,用户对需要管理的集群对象进行详细描述的主体部分都在spec中给出。系统通过spec的描述来创建或更新对象。 |
status |
否 |
persistentvolumeclaimstatus object |
status是当前persistentvolumeclaim的状态信息,创建时不需要添加status参数。 |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
name |
是 |
string |
persistentvolumeclaim名称,可以包含小写字母、数字、连字符和点,开头和结尾必须是字母或数字,最长253个字符,同一namespace下name不能重复。 |
labels |
否 |
string |
persistentvolumeclaim标签,key/value对格式。
|
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
volumeid |
是 |
string |
资源需为已经存在的存储资源
|
storagetype |
是 |
string |
云存储的类型,和volumeid搭配使用。即volumeid和storagetype必须同时被配置。
|
accessmodes |
是 |
array of strings |
指定volume应该具有的访问模式,列表中仅第一个配置参数有效。
|
storageclassname |
否 |
string |
pvc的storageclass名称 |
volumename |
否 |
string |
pvc绑定的pv名称 |
resources |
否 |
resourcerequirements object |
资源需求和限制 |
volumemode |
否 |
string |
pvc指定的pv类型 |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
limits |
否 |
map |
资源限制,创建时指定无效 |
requests |
否 |
map |
资源需求,创建时指定无效 |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
accessmodes |
否 |
array of strings |
显示volume实际具有的访问模式。 |
capacity |
否 |
string |
底层卷的实际资源 |
phase |
否 |
string |
persistentvolumeclaim当前所处的状态 |
响应参数
状态码: 201
参数 |
参数类型 |
描述 |
---|---|---|
apiversion |
string |
api版本,固定值v1 |
kind |
string |
api类型,固定值persistentvolumeclaim |
metadata |
metadata是集群对象的元数据定义,是集合类的元素类型,包含一组由不同名称定义的属性。 |
|
spec |
persistentvolumeclaimspec object |
spec是集合类的元素类型,用户对需要管理的集群对象进行详细描述的主体部分都在spec中给出。系统通过spec的描述来创建或更新对象。 |
status |
persistentvolumeclaimstatus object |
status是当前persistentvolumeclaim的状态信息,创建时不需要添加status参数。 |
参数 |
参数类型 |
描述 |
---|---|---|
name |
string |
persistentvolumeclaim名称,可以包含小写字母、数字、连字符和点,开头和结尾必须是字母或数字,最长253个字符,同一namespace下name不能重复。 |
labels |
string |
persistentvolumeclaim标签,key/value对格式。
|
参数 |
参数类型 |
描述 |
---|---|---|
volumeid |
string |
资源需为已经存在的存储资源
|
storagetype |
string |
云存储的类型,和volumeid搭配使用。即volumeid和storagetype必须同时被配置。
|
accessmodes |
array of strings |
指定volume应该具有的访问模式,列表中仅第一个配置参数有效。
|
storageclassname |
string |
pvc的storageclass名称 |
volumename |
string |
pvc绑定的pv名称 |
resources |
resourcerequirements object |
资源需求和限制 |
volumemode |
string |
pvc指定的pv类型 |
参数 |
参数类型 |
描述 |
---|---|---|
limits |
map |
资源限制,创建时指定无效 |
requests |
map |
资源需求,创建时指定无效 |
参数 |
参数类型 |
描述 |
---|---|---|
accessmodes |
array of strings |
显示volume实际具有的访问模式。 |
capacity |
string |
底层卷的实际资源 |
phase |
string |
persistentvolumeclaim当前所处的状态 |
请求示例
指定evs云硬盘id创建persistentvolumeclaim
post /api/v1/namespaces/default/cloudpersistentvolumeclaims { "apiversion" : "v1", "kind" : "persistentvolumeclaim", "metadata" : { "name" : "csms-dev-create", "namespace" : "default" }, "spec" : { "volumeid" : "86b29e16-23db-11e7-9c83-fa163ec08232", "storagetype" : "bs", "accessmodes" : [ "readwritemany" ] } }
响应示例
状态码: 201
创建persistentvolumeclaim作业下发成功。
{ "kind" : "persistentvolumeclaim", "apiversion" : "v1", "metadata" : { "name" : " csms-dev-create ", "namespace" : "default", "selflink" : "/api/v1/namespaces/default/persistentvolumeclaims/db-mysql-0", "uid" : "86b29e16-23db-11e7-9c83-fa163ec08232", "resourceversion" : "1793115", "creationtimestamp" : "2017-04-18t02:05:42z" }, "spec" : { "volumename" : "csms-dev-create ", "accessmodes" : [ "readwritemany" ], "resources" : { "requests" : { "storage" : "1gi" } } }, "status" : { "phase" : "pending", "accessmodes" : [ "readwritemany" ] } }
sdk代码示例
sdk代码示例如下。
指定evs云硬盘id创建persistentvolumeclaim
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
packagecom.huaweicloud.sdk.test; importcom.huaweicloud.sdk.core.auth.icredential; importcom.huaweicloud.sdk.core.auth.basiccredentials; importcom.huaweicloud.sdk.core.exception.connectionexception; importcom.huaweicloud.sdk.core.exception.requesttimeoutexception; importcom.huaweicloud.sdk.core.exception.serviceresponseexception; importcom.huaweicloud.sdk.cce.v3.region.cceregion; importcom.huaweicloud.sdk.cce.v3.*; importcom.huaweicloud.sdk.cce.v3.model.*; importjava.util.list; importjava.util.arraylist; publicclass createcloudpersistentvolumeclaimssolution{ publicstaticvoidmain(string[]args){ // the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security. // in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment stringak=system.getenv("cloud_sdk_ak"); stringsk=system.getenv("cloud_sdk_sk"); icredentialauth=newbasiccredentials() .withak(ak) .withsk(sk); cceclientclient=cceclient.newbuilder() .withcredential(auth) .withregion(cceregion.valueof(" |
指定evs云硬盘id创建persistentvolumeclaim
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# coding: utf-8 import os from huaweicloudsdkcore.auth.credentials import basiccredentials from huaweicloudsdkcce.v3.region.cce_region import cceregion from huaweicloudsdkcore.exceptions import exceptions from huaweicloudsdkcce.v3 import * if __name__ == "__main__": # the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security. # in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment ak = os.environ["cloud_sdk_ak"] sk = os.environ["cloud_sdk_sk"] credentials = basiccredentials(ak, sk) client = cceclient.new_builder() \ .with_credentials(credentials) \ .with_region(cceregion.value_of(" |
指定evs云硬盘id创建persistentvolumeclaim
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
packagemain import( "fmt" "github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic" cce"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/cce/v3" "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/cce/v3/model" region"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/cce/v3/region" ) funcmain(){ // the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security. // in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment ak:=os.getenv("cloud_sdk_ak") sk:=os.getenv("cloud_sdk_sk") auth:=basic.newcredentialsbuilder(). withak(ak). withsk(sk). build() client:=cce.newcceclient( cce.cceclientbuilder(). withregion(region.valueof(" |
更多编程语言的sdk代码示例,请参见的代码示例页签,可生成自动对应的sdk代码示例。
状态码
状态码 |
描述 |
---|---|
201 |
创建persistentvolumeclaim作业下发成功。 |
错误码
请参见。
相关文档
意见反馈
文档内容是否对您有帮助?
如您有其它疑问,您也可以通过华为云社区问答频道来与我们联系探讨