Gitlab: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
(One intermediate revision by the same user not shown)
Line 8: Line 8:
* https://dev.to/hypnoglow/how-to-make-friends-with-golang-docker-and-gitlab-ci-4bil
* https://dev.to/hypnoglow/how-to-make-friends-with-golang-docker-and-gitlab-ci-4bil
* https://docs.gitlab.com/ee/ci/variables/
* https://docs.gitlab.com/ee/ci/variables/
== 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


[[category:version control]]
[[category:version control]]

Revision as of 15:52, 16 August 2019

Overview

Gitlab 내용 정리

.gitlab-ci.yml

.gitlab-ci.yml 파일은 gitlab 에서 CI/CD pipeline 을 구성할 때 사용하는 configuration file 이다. 이 파일이 프로젝트(Repository) 최상단 디렉토리에 위치하고 있으면 gitlab에서는 이를 자동으로 읽어들인다.

See also