kubernetes Gitlab Runner 的安装

helm 添加 gitlab源 1 helm repo add gitlab https://charts.gitlab.io/ 下载及安装 1. 下载 1 2 helm fetch gitlab/gitlab-runner --untar cp gitlab/values.yaml gitlab-runner-config.yaml 2. 编辑配置文件 一些配置及说明 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

Kubernetes 集群安装 Gitlab

helm添加gitlab源 1 helm repo add gitlab https://charts.gitlab.io/ 安装 1 2 helm fetch gitlab/gitlab --untar cp gitlab/values.yaml gitlab-config.yaml 编辑 gitlab-config.yaml: 仅给出了我自己的修改 1 2 3 4 5 6 7 8 9

配置 kubernetes 拉取私有仓库

docker拉取镜像是不需要登陆的,那怎么拉取哪些需要认证的私密镜像呢? 可以使用secret 生成 secret 1 kubectl create secret docker-registry aliyun-auth --docker-server=registry.cn-hangzhou.aliyuncs.com --docker-username=avc@qq.com --docker-password=121212 最后生成的数据类似这样的