• gitlab安装


    想看一下gitlab是怎么通过docker做ci/cd的,所以这几天花了点时间玩了一下gitlab。

    先试了一下podman把gitlab-ce的image运行起来,但是无法想象怎么在这个环境下部署docker,就先放弃了。

    0. 装了centos 8虚拟机,fedora/rocky在安装gitlab的时候认不出os,所以只能试gitlab认识的os。

    1. 在centos 8下安装docker

    # Add Docker Repo on
    sudo dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
    
    sudo dnf update
    sudo dnf install docker-ce docker-ce-cli containerd.io
    
    sudo systemctl enable docker
    sudo systemctl start docker
    
    sudo usermod -aG docker $USER
    id $USER
    

    2. Install and configure the necessary dependencies

    sudo dnf install -y curl policycoreutils openssh-server perl
    # Enable OpenSSH server daemon if not enabled: sudo systemctl status sshd
    sudo systemctl enable sshd
    sudo systemctl start sshd
    
    # Check if opening the firewall is needed with: sudo systemctl status firewalld
    sudo firewall-cmd --permanent --add-service=http
    sudo firewall-cmd --permanent --add-service=https
    sudo systemctl reload firewalld
    
    sudo dnf install postfix
    sudo systemctl enable postfix
    sudo systemctl start postfix
    

    3. 安装GitLab-ce  

    curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
    
    dnf install -y gitlab-ce
    

    4. 上面步骤会出现gitlab.example.com无法解析的问题,要求解决这个问题以后再运行gitlab-ctl reconfigure。

    sudo hostnamectl set-hostname vmhost01.com

    # 更新/etc/gitlab/gitlab.rb的external_url值

    5. 重启vm,在host上要把vmhost01.com加入/etc/hosts使得系统能认识

    6. 再运行sudo gitlab-ctl reconfigure以后,登录http://vmhost01.com就可以看到登录页面了

    7. root的密码在/et/gitlab/initial_root_password下

    8. 进入项目仓库 CI/CD 页面查看相应的 url 与 token,执行 gitlab-runner register 命令,注册 runner,

        如果上面的vmhost01.com不能正确解析,runner执行会有问题。

    gitlab提供了pipeline的概念,这样相比单纯提供git仓库在ci/cd上走的更远,pipeline内部又有stage和job,围绕这些又有变量以及各种配置。

    至于docker的部署则交给docker去做。

    参考了下列文档

    https://juejin.cn/post/7002764771330097189

    https://juejin.cn/post/7002775438711865352

    https://juejin.cn/post/7002776008570961956

    --------------------------- 知道的更多,不知道的也更多 ---------------------------
  • 相关阅读:
    软件定义网络(SDN)研究进展
    第四章:地址解析协议
    Open vSwitch流表应用实战
    Open vSwitch使用案例扩展实验
    mininet实验 脚本实现控制交换机行为
    mininet实验 动态改变转发规则实验
    websocket
    mongodb增删改查常用命令总结
    Mongo简介
    Redis数据库常用命令总结
  • 原文地址:https://www.cnblogs.com/mryux/p/15239605.html
Copyright © 2020-2023  润新知