Gitlab
Jump to navigation
Jump to search
Overview
Gitlab 내용 정리
.gitlab-ci.yml
.gitlab-ci.yml 파일은 gitlab 에서 CI/CD pipeline 을 구성할 때 사용하는 configuration file 이다. 이 파일이 프로젝트(Repository) 최상단 디렉토리에 위치하고 있으면 gitlab에서는 이를 자동으로 읽어들인다.
- https://docs.gitlab.com/ee/ci/yaml/
- https://dev.to/hypnoglow/how-to-make-friends-with-golang-docker-and-gitlab-ci-4bil
- https://docs.gitlab.com/ee/ci/variables/
go get subgroup
gitlab 에서 subgroup 에 있는 repository 를 go get 으로 다운로드 받을때 문제가 발생했다. 이런 경우, .netrc 파일을 이용한 Token 설정으로 문제를 해결할 수 있다. Token 생성시, API, read_repository 권한이 설정되어야 한다.
혹은 아래와 방법도 가능하다.
See also
- https://www.youtube.com/watch?v=Nj6dqU7u0CI - GitLab CI/CD with Kubernetes
- https://about.gitlab.com/2017/09/21/how-to-create-ci-cd-pipeline-with-autodeploy-to-kubernetes-using-gitlab-and-helm/ - How to create a CI/CD pipeline with Auto Deploy to Kubernetes using GitLab and Helm