클러스터 관리 프로젝트로 cert-manager 설치
클러스터 관리 프로젝트를 사용하여 cert-manager를 설치하는 방법
관리 프로젝트 템플릿 에서 이미 프로젝트를 생성했다고 가정하면, cert-manager를 설치하려면 helmfile.yaml 에서 다음 줄의 주석을 해제해야 합니다: - path: applications/cert-manager/helmfile.yaml 그런 다음 유효한 이메일 주소로 applications/cert-manager/helmfile.yaml 을 업데이트합니다. values: - letsEncryptClusterIssuer: # # 중요: 이 값을 유효한 이메일로 설정해야 합니다. # email: example@example.com Note Kubernetes 버전이 1.20 이전이고 GitLab Managed Apps에서 클러스터 관리 프로젝트로 마이그레이션하는 경우 에는 대신 - path: applications/cert-manager-legacy/helmfile.yaml 을 사용하여 cert-manager v0.10의 기존 릴리즈를 인계받을 수 있습니다. cert-m
