2023-03-07 15:54:39
ERROR: Uploading artifacts as "archive" to coordinator... 413 Request Entity Too Large
GitLab의 아티팩트 설정 혹은 웹 서버에서 제한 용량이 걸려있는 문제
각 환경에 맞게 이 용량을 늘려주면 해결.
아래 해결 방법 중 본인의 환경에 맞게 점검할 것.
gitlab.rb
파일 수정
...
nginx['client_max_body_size'] = '1G'
...
...
http {
...
client_max_body_size 1G;
...
}
...
관리자로 접속 후
Admin -> Settings -> CI/CD -> Continuous Integration and Deployment -> Maximum artifacts size (MB)