在kuboard页面配置harbor地址,配置私有仓库
harbor
Harbor 是一个开源的容器镜像仓库,用于存储和管理 Docker 镜像和其他容器镜像。 * 容器镜像仓库、存储和管理 Docker 镜像和其他容器镜像 * 有什么特点:支持多种镜像格式、易于使用、安全性和访问控制
项目地址:https://gitcode.com/gh_mirrors/ha/harbor
免费下载资源
·
点击项目-配置中心-密文,配置harbor地址
配置完仓库地址需要在对应的k8s master节点 worker节点,配置私有仓库地址要是不配置会报错
[root@k8smaster ~]# docker login 10.4.7.9:80/ -u admin -p Harbor12345
WARNING! Using --password via the CLI is insecure. Use --password-stdin.
Error response from daemon: Get https://10.4.7.9:80/v2/: http: server gave HTTP response to HTTPS client
[root@k8smaster ~]# docker login 10.4.7.9:80 -u admin -p Harbor12345 --password-stdin
WARNING! Using --password via the CLI is insecure. Use --password-stdin.
--password and --password-stdin are mutually exclusive
vi /etc/docker/daemon.json
{
"insecure-registries":["10.4.7.9:80"]
}
配置报错信息,配置完需要重启docker,或者reload
[root@k8smaster ~]# vi /etc/docker/daemon.json
[root@k8smaster ~]# systemctl reload docker
重新登录成功
GitHub 加速计划 / ha / harbor
23.24 K
4.68 K
下载
Harbor 是一个开源的容器镜像仓库,用于存储和管理 Docker 镜像和其他容器镜像。 * 容器镜像仓库、存储和管理 Docker 镜像和其他容器镜像 * 有什么特点:支持多种镜像格式、易于使用、安全性和访问控制
最近提交(Master分支:2 个月前 )
9e55afbb
pull image from registry.goharbor.io instead of dockerhub
Update testcase to support Docker Image Can Be Pulled With Credential
Change gitlab project name when user changed.
Update permissions count and permission count total
Change webhook_endpoint_ui
Signed-off-by: stonezdj <stone.zhang@broadcom.com>
Co-authored-by: Wang Yan <wangyan@vmware.com> 6 天前
3dbfd422
Signed-off-by: wang yan <wangyan@vmware.com> 7 天前
更多推荐
已为社区贡献2条内容
所有评论(0)