GitLab Helm chart 빠른 시작
이 가이드는 Helm을 사용하여 GKE(Google Kubernetes Engine) 또는 EKS(Amazon Elastic Kubernetes Service)에 GitLab을 배포하는 방법을 안내합니다. 시작하기 전에 # 다음 도구가 설치되어 있는지 확인합니다: kubectl helm 그리고 다음이 필요합니다: Kubernetes 클러스터 클러스터 관리자 권한 GKE에 GitLab 배포 # 1단계: GKE 클러스터 생성 # gcloud container clusters create gitlab \ --machine-type n1-standard-4 \ --num-nodes 2 \ --zone us-central1-a 2단계: 클러스터 인증 정보 가져오기 # gcloud container clusters get-credentials gitlab --zone us-central1-a 3단계: Helm 저장소 추가 # helm repo add gitlab https://charts.gi
