镜像仓库
集成镜像仓库
请求
POST /openapi/system/registry
body 参数说明
参数名 | 说明 | 类型 | 必填 |
---|
address | 镜像仓库地址,需包含协议 | string | 是 |
provider | 镜像仓库提供商,可选值如下:
acr :即阿里云 ACR
tcr :即腾讯云 TCR
swr :即华为云 SWR
ecr :即 Amazon ECR
dockerhub :即 DockerHub
harbor :即:Harbor
native :即:其他类型 | string | 是 |
region | 镜像仓库的区域信息 | string | provider = ecr 时必填 |
namespace | 镜像仓库的命名空间 | string | 是 |
is_default | 是否设置为默认使用,系统中同时只能有一个默认使用的镜像仓库 | bool | 是 |
access_key | 镜像仓库 AK | string | 是 |
secret_key | 镜像仓库 SK | string | 是 |
enable_tls | 是否开启 SSL 校验 | bool | 否 |
tls_cert | TLS 证书内容 | string | enable_tls = true 时必填 |
body 参数示例
{
"address": "https://*****.tencentcloudcr.com",
"provider": "tcr",
"namespace": "zadigx",
"is_default": true,
"access_key": "*********",
"secret_key": "*********",
"enable_tls": true,
"tls_cert": "*********"
}
返回
{
"message": "success"
}