InfoGrab Docs

Cells

셀 인스턴스 활성화 및 토폴로지 서비스 클라이언트 구성을 포함하여 기능 테스트의 일부로 GitLab.com 관리자를 위한 GitLab Cells 기능을 구성하고 테스트합니다.

Disclaimer 이 페이지에는 개발 중인 제품, 기능에 대한 정보가 포함되어 있습니다. 이 정보는 참고 목적으로만 제공되며, 구매 또는 계획 시 이 정보에 의존하지 마십시오. 셀 기능을 테스트하려면 GitLab Rails 콘솔을 구성하세요. Note 이 기능은 GitLab.com 관리자만 사용할 수 있습니다. GitLab Self-Managed 또는 GitLab Dedicated 인스턴스에서는 사용할 수 없습니다. Cells 1.0은 개발 중입니다. 셀 개발 상태에 대한 자세한 내용은 에픽 12383 을 참조하세요. 구성 # GitLab 인스턴스를 Cell 인스턴스로 구성하려면: Self-compiled (source) Linux Package (Omnibus) Helm chart config/gitlab.yml 의 셀 관련 구성은 다음 형식입니다: cell: enabled: true id: 1 database: skip_sequence_alteration: false topology_service_client: address: topology-service.gitlab.example.com:443 ca_file: /home/git/gitlab/config/topology-service-ca.pem certificate_file: /home/git/gitlab/config/topology-service-cert.pem private_key_file: /home/git/gitlab/config/topology-service-key.pem /etc/gitlab/gitlab.rb 를 편집하고 다음 줄을 추가합니다: gitlab_rails[ 'cell' ] = { enabled: true , id: 1 , database: { skip_sequence_alteration: false }, topology_service_client: { enabled: true , address: 'topology-service.gitlab.example.com:443' , ca_file: 'path/to/your/ca/.pem' , certificate_file: 'path/to/your/cert/.pem' , private_key_file: 'path/to/your/key/.pem' } } GitLab을 재구성하고 다시 시작합니다: sudo gitlab-ctl reconfigure sudo gitlab-ctl restart gitlab_values.yaml 을 편집합니다: global: appConfig: cell: enabled: true id: 1 database: skipSequenceAlteration: false topologyServiceClient: address: "topology-service.gitlab.example.com:443" tls: enabled: true 파일을 저장하고 새 값을 적용합니다: helm upgrade -f gitlab_values.yaml gitlab gitlab/gitlab 구성 기본값 설명 cell.enab