如何使用極狐GitLab Runner 修改日誌大小限制

极狐GitLab發表於2024-03-22

本文作者:徐曉偉

GitLab 是一個全球知名的一體化 DevOps 平臺,很多人都透過私有化部署 GitLab 來進行原始碼託管。極狐GitLab 是 GitLab 在中國的發行版,專門為中國程式設計師服務。可以一鍵式部署極狐GitLab。

本文講述瞭如何調整極狐Gitlab Runner 日誌大小限制

問題

  1. 測試專案:https://framagit.org/xuxiaowei-com-cn/output-limit ,分支:count-168000

  2. 作業異常

file

  1. 說明

    1. 根據文件 GitLab Runner 高階配置 的 output_limit 屬性可知,日誌預設最大大小是 4M
    2. 直接下載原始日誌,日誌大小也是 4M

解決方案

匯出 helm gitlab 配置

helm -n gitlab-test get values my-gitlab > my-gitlab.yaml

檢視 [極狐gitlab runner 預設配置]

# 此處為節選,不同版本可能會存在差異,請以 https://artifacthub.io/packages/helm/gitlab/gitlab?modal=values 中的配置為準
gitlab-runner:
  runners:
    config: |
      [[runners]]
        [runners.kubernetes]
        image = "ubuntu:22.04"
        {{- if .Values.global.minio.enabled }}
        [runners.cache]
          Type = "s3"
          Path = "gitlab-runner"
          Shared = true
          [runners.cache.s3]
            ServerAddress = {{ include "gitlab-runner.cache-tpl.s3ServerAddress" . }}
            BucketName = "runner-cache"
            BucketLocation = "us-east-1"
            Insecure = false
        {{ end }}

修改 helm gitlab 配置

gitlab-runner:
  runners:
    config: |
      [[runners]]
        
        output_limit = 41943040
        
        [runners.kubernetes]
        image = "ubuntu:22.04"
        {{- if .Values.global.minio.enabled }}
        [runners.cache]
          Type = "s3"
          Path = "gitlab-runner"
          Shared = true
          [runners.cache.s3]
            ServerAddress = {{ include "gitlab-runner.cache-tpl.s3ServerAddress" . }}
            BucketName = "runner-cache"
            BucketLocation = "us-east-1"
            Insecure = false
        {{ end }}

更新 helm gitlab 配置

helm upgrade -n gitlab-test --install my-gitlab gitlab/gitlab -f my-gitlab.yaml --timeout 600s --version 7.7.0

檢視修改結果

  1. 等待所有 gitlab-runnerpod 刪除完成,新 pod 正常執行時,重試流水線,看到沒有觸發流水線日誌大小的限制了
  2. 下載日誌,可以看到日誌大小為 4104 KB,已經超過了 4M
  3. 檢視產物,可以看到日誌大小超過 4M
    file

更多關於極狐GitLab 的最佳實踐,請搜尋關注【極狐GitLab】公眾號或者登入極狐GitLab 官網 https://gitlab.cn 進行學習。

相關文章