gitlab+rancher实现devops

  • ranchertool
    我们还需要一个基础镜像来执行rancher和k8s的命令,自己打一个docker推送到自己的docker仓库里就好了,我这有一个整理好的,放出来ranchertool
  • gitlab添加runner
    执行安装命令
docker run --rm -t -i -v /data/gitlabrunner/config:/etc/gitlab-runner gitlab/gitlab-runner register

这里需要输入gitlab地址和注册令牌,在管理中心->runner可以找到


image.png
  • 新建项目
    在gitlab中我们新建一个项目,我建了一个前端的项目


    image.png

    dockerfile自己写吧,没什么东西,主要看一下下面两个文件
    .gitlab-ci.yml

image: docker:dind
stages:
    - build
    - push
    - preview
    - production

build:
    stage: build
    only:
        - preview
        - master
    script:
        - docker build -t $CI_REGISTRY/library/gitlabcount:$CI_PIPELINE_ID .
    tags:  
        - md-tag
push:
    stage: push
    only:
        - preview
        - master
    script:
        - docker login -u $CI_REGISTRY_USER -p $CI_JOB_TOKEN $CI_REGISTRY
        - docker push $CI_REGISTRY/library/gitlabcount:$CI_PIPELINE_ID
    tags:  
        - md-tag

preview:
    stage: preview
    only:
        - preview
    image: $CI_REGISTRY/basic/rancher-tool
    script:
        - deploy_preview
    tags:  
        - md-tag
production:
    stage: production
    only:
        - master
    image: $CI_REGISTRY/basic/rancher-tool
    script:
        - deploy_production
    tags:
        - md-tag


.auto_devops: &auto_devops |

    function deploy_preview(){
        echo '部署preview'
        rancher login $RANCHER_API -t $RANCHER_TOKEN --skip-verify
        sed -i 's^${image_tag}^'"$CI_PIPELINE_ID^g" "./deployment.yaml"
        rancher kubectl --namespace=$NAMESPACE apply -f ./deployment.yaml
    }
    function deploy_production(){
        echo '部署production'
        rancher login $RANCHER_API -t $RANCHER_TOKEN --skip-verify
        sed -i 's^${image_tag}^'"$CI_PIPELINE_ID^g" "./deployment.yaml"
        rancher kubectl --namespace=$NAMESPACE apply -f ./deployment.yaml
    }

before_script:
    - *auto_devops

这里面有一些变量,他们在gitlab中配置,在刚才新建的项目中点设置,点CI/CD,在右侧的变量选项卡里新建这些变量


image.png

RANCHER_API和RANCHER_TOKEN在rancher中获取


image.png

image.png

deployment.yaml

apiVersion: apps/v1
kind: Deployment
metadata:
  annotations:
    deployment.kubernetes.io/revision: "3"
    field.cattle.io/creatorId: user-5xdgt
    field.cattle.io/publicEndpoints: '[{"addresses":["192.168.240.118"],"port":30509,"protocol":"TCP","serviceName":"default:gitcounter-nodeport","allNodes":true}]'
  creationTimestamp: "2020-07-02T01:49:13Z"
  generation: 4
  labels:
    cattle.io/creator: norman
    workload.user.cattle.io/workloadselector: deployment-default-gitcounter
  managedFields:
  - apiVersion: apps/v1
    fieldsType: FieldsV1
    fieldsV1:
      f:metadata:
        f:annotations:
          .: {}
          f:field.cattle.io/creatorId: {}
          f:field.cattle.io/publicEndpoints: {}
        f:labels:
          .: {}
          f:cattle.io/creator: {}
          f:workload.user.cattle.io/workloadselector: {}
      f:spec:
        f:progressDeadlineSeconds: {}
        f:replicas: {}
        f:revisionHistoryLimit: {}
        f:selector:
          f:matchLabels:
            .: {}
            f:workload.user.cattle.io/workloadselector: {}
        f:strategy:
          f:rollingUpdate:
            .: {}
            f:maxSurge: {}
            f:maxUnavailable: {}
          f:type: {}
        f:template:
          f:metadata:
            f:annotations:
              .: {}
              f:cattle.io/timestamp: {}
              f:field.cattle.io/ports: {}
            f:labels:
              .: {}
              f:workload.user.cattle.io/workloadselector: {}
          f:spec:
            f:containers:
              k:{"name":"gitcounter"}:
                .: {}
                f:image: {}
                f:imagePullPolicy: {}
                f:name: {}
                f:ports:
                  .: {}
                  k:{"containerPort":80,"protocol":"TCP"}:
                    .: {}
                    f:containerPort: {}
                    f:name: {}
                    f:protocol: {}
                f:resources: {}
                f:securityContext:
                  .: {}
                  f:allowPrivilegeEscalation: {}
                  f:capabilities: {}
                  f:privileged: {}
                  f:readOnlyRootFilesystem: {}
                  f:runAsNonRoot: {}
                f:stdin: {}
                f:terminationMessagePath: {}
                f:terminationMessagePolicy: {}
                f:tty: {}
            f:dnsPolicy: {}
            f:restartPolicy: {}
            f:schedulerName: {}
            f:securityContext: {}
            f:terminationGracePeriodSeconds: {}
    manager: Go-http-client
    operation: Update
    time: "2020-07-02T01:56:17Z"
  - apiVersion: apps/v1
    fieldsType: FieldsV1
    fieldsV1:
      f:metadata:
        f:annotations:
          f:deployment.kubernetes.io/revision: {}
      f:status:
        f:availableReplicas: {}
        f:conditions:
          .: {}
          k:{"type":"Available"}:
            .: {}
            f:lastTransitionTime: {}
            f:lastUpdateTime: {}
            f:message: {}
            f:reason: {}
            f:status: {}
            f:type: {}
          k:{"type":"Progressing"}:
            .: {}
            f:lastTransitionTime: {}
            f:lastUpdateTime: {}
            f:message: {}
            f:reason: {}
            f:status: {}
            f:type: {}
        f:observedGeneration: {}
        f:readyReplicas: {}
        f:replicas: {}
        f:updatedReplicas: {}
    manager: kube-controller-manager
    operation: Update
    time: "2020-07-02T01:58:27Z"
  name: gitcounter
  namespace: default
  resourceVersion: "197684"
  selfLink: /apis/apps/v1/namespaces/default/deployments/gitcounter
  uid: 09c00890-65a0-429c-a16d-74604ea18093
spec:
  progressDeadlineSeconds: 600
  replicas: 2
  revisionHistoryLimit: 10
  selector:
    matchLabels:
      workload.user.cattle.io/workloadselector: deployment-default-gitcounter
  strategy:
    rollingUpdate:
      maxSurge: 1
      maxUnavailable: 0
    type: RollingUpdate
  template:
    metadata:
      annotations:
        cattle.io/timestamp: "2020-07-02T01:56:17Z"
        field.cattle.io/ports: '[[{"containerPort":80,"dnsName":"gitcounter-nodeport","hostPort":0,"kind":"NodePort","name":"80tcp305091","protocol":"TCP","sourcePort":30509}]]'
      creationTimestamp: null
      labels:
        workload.user.cattle.io/workloadselector: deployment-default-gitcounter
    spec:
      containers:
      - image: docker.maidiyun.com/library/gitlabcount:${image_tag}
        imagePullPolicy: Always
        name: gitcounter
        ports:
        - containerPort: 80
          name: 80tcp305091
          protocol: TCP
        resources: {}
        securityContext:
          allowPrivilegeEscalation: false
          capabilities: {}
          privileged: false
          readOnlyRootFilesystem: false
          runAsNonRoot: false
        stdin: true
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        tty: true
      dnsPolicy: ClusterFirst
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext: {}
      terminationGracePeriodSeconds: 30
status:
  availableReplicas: 2
  conditions:
  - lastTransitionTime: "2020-07-02T01:58:27Z"
    lastUpdateTime: "2020-07-02T01:58:27Z"
    message: Deployment has minimum availability.
    reason: MinimumReplicasAvailable
    status: "True"
    type: Available
  - lastTransitionTime: "2020-07-02T01:49:13Z"
    lastUpdateTime: "2020-07-02T01:58:27Z"
    message: ReplicaSet "gitcounter-6f47d79c6c" has successfully progressed.
    reason: NewReplicaSetAvailable
    status: "True"
    type: Progressing
  observedGeneration: 4
  readyReplicas: 2
  replicas: 2
  updatedReplicas: 2

这个deployment是从rancher中复制出来的,你也可以自己写,嫌麻烦就去复制一个出来吧
我们首先在rancher中部署一个服务,随便部署一个就行


image.png

然后点击查看yaml


image.png

然后复制出来,删除里面的resourceVersion那一行,把image地址替换成我们刚才新建的那个项目的docker仓库地址,tag用变量替换一下,里面还有很多没用的东西可以删掉,自己看着删吧
  • 验证
    我新建的项目有三个分支dev、preview和master,当合并代码到preview或者master的时候会自动进行构建
    把代码合并到preview然后去gitlab里项目的CI/CD->流水线 看一下


    image.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,561评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,218评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,162评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,470评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,550评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,806评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,951评论 3 407
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,712评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,166评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,510评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,643评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,306评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,930评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,745评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,983评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,351评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,509评论 2 348