Documentation ¶
Index ¶
- type PodClient
- func (c *PodClient) AssociateElasticIp(request *pod.AssociateElasticIpRequest) (*pod.AssociateElasticIpResponse, error)
- func (c *PodClient) Attach(request *pod.AttachRequest) (*pod.AttachResponse, error)
- func (c *PodClient) CheckPodName(request *pod.CheckPodNameRequest) (*pod.CheckPodNameResponse, error)
- func (c *PodClient) CreatePods(request *pod.CreatePodsRequest) (*pod.CreatePodsResponse, error)
- func (c *PodClient) CreateSecret(request *pod.CreateSecretRequest) (*pod.CreateSecretResponse, error)
- func (c *PodClient) DeletePod(request *pod.DeletePodRequest) (*pod.DeletePodResponse, error)
- func (c *PodClient) DeleteSecret(request *pod.DeleteSecretRequest) (*pod.DeleteSecretResponse, error)
- func (c *PodClient) DescribeContainer(request *pod.DescribeContainerRequest) (*pod.DescribeContainerResponse, error)
- func (c *PodClient) DescribeInstanceTypes(request *pod.DescribeInstanceTypesRequest) (*pod.DescribeInstanceTypesResponse, error)
- func (c *PodClient) DescribePod(request *pod.DescribePodRequest) (*pod.DescribePodResponse, error)
- func (c *PodClient) DescribePods(request *pod.DescribePodsRequest) (*pod.DescribePodsResponse, error)
- func (c *PodClient) DescribeQuota(request *pod.DescribeQuotaRequest) (*pod.DescribeQuotaResponse, error)
- func (c *PodClient) DescribeSecret(request *pod.DescribeSecretRequest) (*pod.DescribeSecretResponse, error)
- func (c *PodClient) DescribeSecrets(request *pod.DescribeSecretsRequest) (*pod.DescribeSecretsResponse, error)
- func (c *PodClient) DisableLogger()
- func (c *PodClient) DisassociateElasticIp(request *pod.DisassociateElasticIpRequest) (*pod.DisassociateElasticIpResponse, error)
- func (c *PodClient) ExecCreate(request *pod.ExecCreateRequest) (*pod.ExecCreateResponse, error)
- func (c *PodClient) ExecGetExitCode(request *pod.ExecGetExitCodeRequest) (*pod.ExecGetExitCodeResponse, error)
- func (c *PodClient) ExecStart(request *pod.ExecStartRequest) (*pod.ExecStartResponse, error)
- func (c *PodClient) GetContainerLogs(request *pod.GetContainerLogsRequest) (*pod.GetContainerLogsResponse, error)
- func (c *PodClient) ModifyPodAttribute(request *pod.ModifyPodAttributeRequest) (*pod.ModifyPodAttributeResponse, error)
- func (c *PodClient) RebuildPod(request *pod.RebuildPodRequest) (*pod.RebuildPodResponse, error)
- func (c *PodClient) ResizePod(request *pod.ResizePodRequest) (*pod.ResizePodResponse, error)
- func (c *PodClient) ResizeTTY(request *pod.ResizeTTYRequest) (*pod.ResizeTTYResponse, error)
- func (c *PodClient) SetConfig(config *core.Config)
- func (c *PodClient) SetLogger(logger core.Logger)
- func (c *PodClient) StartPod(request *pod.StartPodRequest) (*pod.StartPodResponse, error)
- func (c *PodClient) StopPod(request *pod.StopPodRequest) (*pod.StopPodResponse, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PodClient ¶
type PodClient struct {
core.JDCloudClient
}
func NewPodClient ¶
func NewPodClient(credential *core.Credential) *PodClient
func (*PodClient) AssociateElasticIp ¶
func (c *PodClient) AssociateElasticIp(request *pod.AssociateElasticIpRequest) (*pod.AssociateElasticIpResponse, error)
pod 绑定弹性公网 IP,绑定的是主网卡、主内网IP对应的弹性IP. <br>
一个 pod 只能绑定一个弹性公网 IP(主网卡),若主网卡已存在弹性公网IP,会返回错误。<br> 如果是黑名单中的用户,会返回错误。
func (*PodClient) Attach ¶
func (c *PodClient) Attach(request *pod.AttachRequest) (*pod.AttachResponse, error)
将容器连接到本地标准输入输出
func (*PodClient) CheckPodName ¶
func (c *PodClient) CheckPodName(request *pod.CheckPodNameRequest) (*pod.CheckPodNameResponse, error)
podName 是否符合命名规范,以及查询指定 podName 区域内是否已经存在。
func (*PodClient) CreatePods ¶
func (c *PodClient) CreatePods(request *pod.CreatePodsRequest) (*pod.CreatePodsResponse, error)
创建一台或多台 pod
- 创建pod需要通过实名认证 - hostname规范
- 支持两种方式:以标签方式书写或以完整主机名方式书写
- 标签规范
- 0-9,a-z(不分大小写)和-(减号),其他的都是无效的字符串
- 不能以减号开始,也不能以减号结尾
- 最小1个字符,最大63个字符
- 完整的主机名由一系列标签与点连接组成
- 标签与标签之间使用“.”(点)进行连接
- 不能以“.”(点)开始,也不能以“.”(点)结尾
- 整个主机名(包括标签以及分隔点“.”)最多有63个ASCII字符
- 网络配置
- 指定主网卡配置信息
- 必须指定subnetId
- 可以指定elasticIp规格来约束创建的弹性IP,带宽取值范围[1-100]Mbps,步进1Mbps
- 可以指定网卡的主IP(primaryIpAddress)和辅助IP(secondaryIpAddresses),此时maxCount只能为1
- 可以设置网卡的自动删除autoDelete属性,指明是否删除实例时自动删除网卡
- 安全组securityGroup需与子网Subnet在同一个私有网络VPC内
- 一个 pod 创建时至多指定5个安全组
- 主网卡deviceIndex设置为1
- 存储
- volume分为container system disk和pod data volume,container system disk的挂载目录是/,data volume的挂载目录可以随意指定
- container system disk
- 只能是cloud类别
- 云硬盘类型可以选择hdd.std1、ssd.gp1、ssd.io1
- 磁盘大小
- 所有类型:范围[20,100]GB,步长为10G
- 自动删除
- 默认自动删除
- 可以选择已存在的云硬盘
- data volume
- 当前只能选择cloud类别
- 云硬盘类型可以选择hdd.std1、ssd.gp1、ssd.io1
- 磁盘大小
- 所有类型:范围[20,4000]GB,步长为10G
- 自动删除
- 默认自动删除
- 可以选择已存在的云硬盘
- 可以从快照创建磁盘
- pod 容器日志
- default:默认在本地分配10MB的存储空间,自动rotate
- DNS-1123 label规范
- 支持数字、小写字母、英文中划线“-”,但不支持以“-”作为开始字符和结束字符,1~63字符。
- 例子: my-name, 123-abc
- DNS-1123 subdomain规范
- 由一或多个标签组成,标签之间用'.'分隔;标签可由小写字母、数字、英文中划线'-'构成,标签首尾不可为'-';所有字符总长度为1~253。
- 例子: example.com, registry.docker-cn.com
- 其他
- 创建完成后,pod 状态为running
- maxCount为最大努力,不保证一定能达到maxCount
func (*PodClient) CreateSecret ¶
func (c *PodClient) CreateSecret(request *pod.CreateSecretRequest) (*pod.CreateSecretResponse, error)
创建一个 secret,用于存放镜像仓库机密相关信息。
func (*PodClient) DeletePod ¶
func (c *PodClient) DeletePod(request *pod.DeletePodRequest) (*pod.DeletePodResponse, error)
pod 状态必须为 stopped、running 或 error状态。 <br>
按量付费的实例,如不主动删除将一直运行,不再使用的实例,可通过本接口主动停用。<br> 只能支持主动删除按量计费类型的实例。包年包月过期的 pod 也可以删除,其它的情况还请发工单系统。计费状态异常的容器无法删除。
[MFA enabled]
func (*PodClient) DeleteSecret ¶
func (c *PodClient) DeleteSecret(request *pod.DeleteSecretRequest) (*pod.DeleteSecretResponse, error)
删除单个 secret
func (*PodClient) DescribeContainer ¶ added in v1.11.0
func (c *PodClient) DescribeContainer(request *pod.DescribeContainerRequest) (*pod.DescribeContainerResponse, error)
获取 pod 中某个容器的详情
func (*PodClient) DescribeInstanceTypes ¶ added in v1.11.0
func (c *PodClient) DescribeInstanceTypes(request *pod.DescribeInstanceTypesRequest) (*pod.DescribeInstanceTypesResponse, error)
查询实例规格信息列表
func (*PodClient) DescribePod ¶
func (c *PodClient) DescribePod(request *pod.DescribePodRequest) (*pod.DescribePodResponse, error)
查询一个 pod 的详细信息
func (*PodClient) DescribePods ¶
func (c *PodClient) DescribePods(request *pod.DescribePodsRequest) (*pod.DescribePodsResponse, error)
批量查询 pod 的详细信息<br>
此接口支持分页查询,默认每页20条。
func (*PodClient) DescribeQuota ¶
func (c *PodClient) DescribeQuota(request *pod.DescribeQuotaRequest) (*pod.DescribeQuotaResponse, error)
查询资源的配额,支持:原生容器 pod 和 secret.
func (*PodClient) DescribeSecret ¶
func (c *PodClient) DescribeSecret(request *pod.DescribeSecretRequest) (*pod.DescribeSecretResponse, error)
查询单个 secret 详情
func (*PodClient) DescribeSecrets ¶
func (c *PodClient) DescribeSecrets(request *pod.DescribeSecretsRequest) (*pod.DescribeSecretsResponse, error)
查询 secret 列表。<br>
此接口支持分页查询,默认每页20条。
func (*PodClient) DisableLogger ¶ added in v1.13.0
func (c *PodClient) DisableLogger()
func (*PodClient) DisassociateElasticIp ¶
func (c *PodClient) DisassociateElasticIp(request *pod.DisassociateElasticIpRequest) (*pod.DisassociateElasticIpResponse, error)
pod 解绑公网 IP,解绑的是主网卡、主内网 IP 对应的弹性 IP.
func (*PodClient) ExecCreate ¶
func (c *PodClient) ExecCreate(request *pod.ExecCreateRequest) (*pod.ExecCreateResponse, error)
创建 exec
func (*PodClient) ExecGetExitCode ¶
func (c *PodClient) ExecGetExitCode(request *pod.ExecGetExitCodeRequest) (*pod.ExecGetExitCodeResponse, error)
获取exec退出码
func (*PodClient) ExecStart ¶
func (c *PodClient) ExecStart(request *pod.ExecStartRequest) (*pod.ExecStartResponse, error)
执行exec,此接口需要升级Http协议到WebSocket
func (*PodClient) GetContainerLogs ¶
func (c *PodClient) GetContainerLogs(request *pod.GetContainerLogsRequest) (*pod.GetContainerLogsResponse, error)
查询单个容器日志
func (*PodClient) ModifyPodAttribute ¶
func (c *PodClient) ModifyPodAttribute(request *pod.ModifyPodAttributeRequest) (*pod.ModifyPodAttributeResponse, error)
修改 pod 的描述。
func (*PodClient) RebuildPod ¶ added in v1.10.0
func (c *PodClient) RebuildPod(request *pod.RebuildPodRequest) (*pod.RebuildPodResponse, error)
对 pod 中的容器使用新的镜像进行重置,pod 需要处于关闭状态。
func (*PodClient) ResizePod ¶ added in v1.13.0
func (c *PodClient) ResizePod(request *pod.ResizePodRequest) (*pod.ResizePodResponse, error)
调整pod实例类型配置。
- pod phase 需是停止状态; - 支持升配、降配;**不支持原有规格** - 计费类型不变
- 包年包月:需要计算配置差价,如果所选配置价格高,需要补齐到期前的差价,到期时间不变;如果所选配置价格低,需要延长到期时间
- 按配置:按照所选规格,进行计费
- 支持对 pod 中的容器进行资源限制、资源需求的调整
- 容器需求的总资源占用不得超过 pod 的实例类型
- 容器资源限制不得超过 pod 的实例类型
func (*PodClient) ResizeTTY ¶
func (c *PodClient) ResizeTTY(request *pod.ResizeTTYRequest) (*pod.ResizeTTYResponse, error)
设置TTY大小
func (*PodClient) StartPod ¶
func (c *PodClient) StartPod(request *pod.StartPodRequest) (*pod.StartPodResponse, error)
启动处于关闭状态的单个 pod ,处在任务执行中的 pod 无法启动。<br>
pod 实例或其绑定的云盘已欠费时,容器将无法正常启动。<br>
func (*PodClient) StopPod ¶
func (c *PodClient) StopPod(request *pod.StopPodRequest) (*pod.StopPodResponse, error)
停止处于运行状态的单个实例,处于任务执行中的 pod 无法启动。