gitlab-ci/cd(一):rancher安装gitlab

第一步:进入集群并创建project和namespace

GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图
GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图1
GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图2

第二步:配置gitlab的端口和挂载

GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图3
GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图4
GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图5
GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图6
GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图7

为什么要对这些端口和数据卷挂载呢?

GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图8

参考官方文档:https://docs.gitlab.com/ee/install/docker.html

重置密码 shell>gitlab-rake “gitlab:password:reset”

GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图9
GitOps、技术与框架、新兴技术能力gitlab-ci/cd(一):rancher安装gitlab插图10

git的使用

一、克隆代码

shell>mdkir javademo
shell>cd /javademo
shell>git clone https://codeup.aliyun.com/613aded82bf07942fbc24954/gani/dev.git

二、将文件添加到暂存区

shell>git add .

三、将暂存区里的文件提交到本地仓库

---初次commit之前,需要配置用户邮箱及用户名,使用以下命令:
shell>git config --global user.email "you@example.com"
shell>git config --global user.name "Your Name"
shell>git commit -m "demo1"

四、用于管理远程仓库

shell>git remote -v
# 提交到 Github
shell> git remote add origin git@github.com:tianqixin/runoob-git-test.git
shell> git push -u origin master
shell>git remote rm name  # 删除远程仓库
shell>git remote rename old_name new_name  # 修改仓库名