외부 배포 도구의 배포 추적
GitLab은 내장 배포 솔루션을 제공하지만, Heroku나 ArgoCD와 같은 외부 배포 도구를 사용하는 것을 선호할 수 있습니다. GitLab은 이러한 외부 도구에서의 배포 이벤트를 수신하고 GitLab 내에서 해당 배포를 추적할 수 있도록 합니다. 예를 들어, 추적 설정을 통해 다음과 같은 기능을 사용할 수 있습니다.
- 머지 요청이 배포되었는지 및 어떤 환경에 배포되었는지 확인.
- 환경 또는 배포 날짜로 머지 요청 필터링.
- DevOps Research and Assessment (DORA) 메트릭.
- 환경 및 배포 보기.
- 배포별로 포함된 새로운 머지 요청 추적.
배포 추적 설정 방법
일반적으로 외부 배포 도구는 배포 상태 변경 시 추가 API 요청을 실행하기 위한 웹훅을 제공합니다. 해당 도구를 구성하여 GitLab 배포 API에 요청을 보낼 수 있습니다. 다음은 이벤트 및 API 요청 흐름에 대한 개요입니다:
예시: ArgoCD의 배포 추적
ArgoCD 웹훅을 사용하여 배포 이벤트를 GitLab 배포 API로 전송할 수 있습니다.
다음은 ArgoCD가 새 리비전을 성공적으로 배포할 때 GitLab에 success
배포 레코드를 생성하는 예시 설정입니다:
-
새 웹훅을 생성하세요. 다음 manifest 파일을 저장하고
kubectl apply -n argocd -f <manifiest-file-path>
로 적용할 수 있습니다:apiVersion: v1 kind: ConfigMap metadata: name: argocd-notifications-cm data: trigger.on-deployed: | - description: Application is synced and healthy. Triggered once per commit. oncePer: app.status.sync.revision send: - gitlab-deployment-status when: app.status.operationState.phase in ['Succeeded'] and app.status.health.status == 'Healthy' template.gitlab-deployment-status: | webhook: gitlab: method: POST path: /projects/<your-project-id>/deployments body: | { "status": "success", "environment": "production", "sha": "{{.app.status.operationState.operation.sync.revision}}", "ref": "main", "tag": "false" } service.webhook.gitlab: | url: https://gitlab.com/api/v4 headers: - name: PRIVATE-TOKEN value: <your-access-token> - name: Content-type value: application/json
-
애플리케이션에서 새 구독을 생성하세요:
kubectl patch app <your-app-name> -n argocd -p '{"metadata": {"annotations": {"notifications.argoproj.io/subscribe.on-deployed.gitlab":""}}}' --type merge
argocd-notifications
도구로 문제를 해결할 수 있습니다. 예를 들어, argocd-notifications template notify gitlab-deployment-status <your-app-name> --recipient gitlab:argocd-notifications
를 통해 GitLab API 서버로부터 즉시 API 요청을 트리거하고 오류 메시지를 렌더링할 수 있습니다.