그룹 수준의 보호된 환경 API
- GitLab 14.0에 도입. 기본적으로 비활성화되며
group_level_protected_environments
플래그 뒤에 배포됩니다.- Feature flag
group_level_protected_environments
는 GitLab 14.3에서 제거되었습니다.- GitLab 14.3에서 일반적으로 사용 가능해졌습니다.
그룹 수준의 보호된 환경에 대해 자세히 알아보기.
유효한 액세스 레벨
액세스 레벨은 ProtectedEnvironments::DeployAccessLevel::ALLOWED_ACCESS_LEVELS
메서드에서 정의됩니다.
현재 이러한 레벨이 인식되었습니다:
30 => 개발자 액세스
40 => 유지자 액세스
60 => 관리자 액세스
그룹 수준의 보호된 환경 목록
그룹에서 보호된 환경의 목록을 가져옵니다.
GET /groups/:id/protected_environments
속성 | 유형 | 필수 여부 | 설명 |
---|---|---|---|
id
| 정수/문자열 | 예 | 인증된 사용자가 유지하는 URL 인코딩된 경로 및 ID. |
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/5/protected_environments/"
예시 응답:
[
{
"name": "production",
"deploy_access_levels": [
{
"id": 12,
"access_level": 40,
"access_level_description": "유지자",
"user_id": null,
"group_id": null
}
],
"required_approval_count": 0
}
]
단일 보호된 환경 가져오기
단일 보호된 환경을 가져옵니다.
GET /groups/:id/protected_environments/:name
속성 | 유형 | 필수 여부 | 설명 |
---|---|---|---|
id
| 정수/문자열 | 예 | 인증된 사용자가 유지하는 URL 인코딩된 경로 및 ID. |
name
| 문자열 | 예 | 보호된 환경의 배포 티어. production , staging , testing , development , 또는 other 중 하나. 배포 티어에 대해 자세히 알아보기.
|
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/5/protected_environments/production"
예시 응답:
{
"name": "production",
"deploy_access_levels": [
{
"id": 12,
"access_level": 40,
"access_level_description": "유지자",
"user_id": null,
"group_id": null
}
],
"required_approval_count": 0
}
단일 환경 보호하기
단일 환경을 보호합니다.
POST /groups/:id/protected_environments
속성 | 유형 | 필수 여부 | 설명 |
---|---|---|---|
id
| 정수/문자열 | 예 | 인증된 사용자가 유지하는 URL 인코딩된 경로 및 ID. |
name
| 문자열 | 예 | 보호된 환경의 배포 티어. production , staging , testing , development , 또는 other 중 하나. 배포 티어에 대해 자세히 알아보기.
|
deploy_access_levels
| 배열 | 예 | 배포가 허용된 액세스 레벨의 배열. 각각 해시로 설명됩니다. user_id , group_id , 또는 access_level 중 하나입니다. 포맷은 각각 {user_id: integer} , {group_id: integer} , 또는 {access_level: integer} 입니다.
|
approval_rules
| 배열 | 아니요 | 승인이 허용된 액세스 레벨의 배열. 각각 해시로 설명됩니다. user_id , group_id , 또는 access_level 중 하나입니다. 포맷은 각각 {user_id: integer} , {group_id: integer} , 또는 {access_level: integer} 입니다. 지정된 엔티티에서 필요한 승인 수를 required_approvals 필드로 지정할 수도 있습니다. 자세한 내용은 다중 승인 규칙을 참조하세요.
|
할당 가능한 user_id
는 유지자 역할(또는 그 이상)을 가진 해당 그룹의 사용자입니다.
할당 가능한 group_id
는 주어진 그룹의 서브그룹입니다.
curl --header 'Content-Type: application/json' --request POST --data '{"name": "production", "deploy_access_levels": [{"group_id": 9899826}]}' --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/22034114/protected_environments"
예시 응답:
{
"name": "production",
"deploy_access_levels": [
{
"id": 12,
"access_level": 40,
"access_level_description": "보호된-액세스-그룹",
"user_id": null,
"group_id": 9899826
}
],
"required_approval_count": 0
}
다중 승인 규칙이 있는 예시:
curl --header 'Content-Type: application/json' --request POST \
--data '{"name": "production", "deploy_access_levels": [{"group_id": 138}], "approval_rules": [{"group_id": 134}, {"group_id": 135, "required_approvals": 2}]}' \
--header "PRIVATE-TOKEN: <your_access_token>" \
"https://gitlab.example.com/api/v4/groups/128/protected_environments"
이 구성에서, 운영자 그룹 "group_id": 138
은 QA 그룹 "group_id": 134
및 보안 그룹 "group_id": 135
이 배포를 승인한 후에만 production
으로 배포 작업을 실행할 수 있습니다.
보호된 환경 업데이트
- GitLab 15.4에 도입되었습니다.
단일 환경을 업데이트합니다.
PUT /groups/:id/protected_environments/:name
속성 | 유형 | 필수 | 설명 |
---|---|---|---|
id
| integer/string | 예 | 인증된 사용자가 유지하는 그룹의 ID 또는 URL-인코딩된 경로입니다. |
name
| string | 예 | 보호된 환경의 배포 티어입니다. production , staging , testing , development , 또는 other 중 하나입니다. 배포 티어에 대해 더 알아보세요.
|
deploy_access_levels
| array | 아니요 | 배포를 허용하는 액세스 수준의 배열입니다. 각각 해시로 설명됩니다. user_id , group_id , 또는 access_level 중 하나입니다. 각각 {user_id: integer} , {group_id: integer} , 또는 {access_level: integer} 의 형태를 취합니다.
|
required_approval_count
| integer | 아니요 | 이 환경으로의 배포에 필요한 승인 수입니다. |
approval_rules
| array | 아니요 | 승인을 허용하는 액세스 수준의 배열입니다. 각각 해시로 설명됩니다. user_id , group_id , 또는 access_level 중 하나입니다. 각각 {user_id: integer} , {group_id: integer} , 또는 {access_level: integer} 의 형태를 취합니다. 또한 required_approvals 필드로 지정된 엔티티로부터 필요한 승인 수를 지정할 수도 있습니다. 자세한 정보는 여러 승인 규칙 추가을 확인하세요.
|
업데이트하려면:
-
user_id
: 업데이트된 사용자가 유지되는 그룹에 Maintainer 역할(또는 그 이상)이 할당되어 있는지 확인하세요. 또한 해당 해시 내에서deploy_access_level
또는approval_rule
의id
를 전달해야 합니다. -
group_id
: 업데이트된 그룹이 보호된 환경이 속한 그룹의 하위 그룹이라는 것을 확인하세요. 또한 해당 해시 내에서deploy_access_level
또는approval_rule
의id
를 전달해야 합니다.
삭제하려면:
-
_destroy
를true
로 설정해야 합니다. 아래 예시를 참조하세요.
예시: deploy_access_level
레코드 생성
curl --header 'Content-Type: application/json' --request PUT \
--data '{"deploy_access_levels": [{"group_id": 9899829, access_level: 40}]}' \
--header "PRIVATE-TOKEN: <your_access_token>" \
"https://gitlab.example.com/api/v4/groups/22034114/protected_environments/production"
예시 응답:
{
"name": "production",
"deploy_access_levels": [
{
"id": 12,
"access_level": 40,
"access_level_description": "protected-access-group",
"user_id": null,
"group_id": 9899829,
"group_inheritance_type": 1
}
],
"required_approval_count": 0
}
예시: deploy_access_level
레코드 업데이트
curl --header 'Content-Type: application/json' --request PUT \
--data '{"deploy_access_levels": [{"id": 12, "group_id": 22034120}]}' \
--header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/22034114/protected_environments/production"
{
"name": "production",
"deploy_access_levels": [
{
"id": 12,
"access_level": 40,
"access_level_description": "protected-access-group",
"user_id": null,
"group_id": 22034120,
"group_inheritance_type": 0
}
],
"required_approval_count": 2
}
예시: deploy_access_level
레코드 삭제
curl --header 'Content-Type: application/json' --request PUT \
--data '{"deploy_access_levels": [{"id": 12, "_destroy": true}]}' \
--header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/22034114/protected_environments/production"
예시 응답:
{
"name": "production",
"deploy_access_levels": [],
"required_approval_count": 0
}
예시: approval_rule
레코드 생성
curl --header 'Content-Type: application/json' --request PUT \
--data '{"approval_rules": [{"group_id": 134, "required_approvals": 1}]}' \
--header "PRIVATE-TOKEN: <your_access_token>" \
"https://gitlab.example.com/api/v4/groups/22034114/protected_environments/production"
예시 응답:
{
"name": "production",
"approval_rules": [
{
"id": 38,
"user_id": null,
"group_id": 134,
"access_level": null,
"access_level_description": "qa-group",
"required_approvals": 1,
"group_inheritance_type": 0
}
]
}
예시: approval_rule
레코드 업데이트
curl --header 'Content-Type: application/json' --request PUT \
--data '{"approval_rules": [{"id": 38, "group_id": 135, "required_approvals": 2}]}' \
--header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/22034114/protected_environments/production"
{
"name": "production",
"approval_rules": [
{
"id": 38,
"user_id": null,
"group_id": 135,
"access_level": null,
"access_level_description": "security-group",
"required_approvals": 2,
"group_inheritance_type": 0
}
]
}
예시: approval_rule
레코드 삭제
curl --header 'Content-Type: application/json' --request PUT \
--data '{"approval_rules": [{"id": 38, "_destroy": true}]}' \
--header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/22034114/protected_environments/production"
예시 응답:
{
"name": "production",
"approval_rules": []
}
단일 환경 보호 해제
주어진 보호된 환경의 보호 해제
DELETE /groups/:id/protected_environments/:name
속성 | 유형 | 필수 | 설명 |
---|---|---|---|
id
| integer/string | 예 | 인증된 사용자가 유지하는 그룹의 ID 또는 URL 인코딩 된 경로입니다. |
name
| string | 예 | 보호된 환경의 배포 등급입니다. production , staging , testing , development , 또는 other 중 하나입니다. 배포 등급에 대해 더 알아보세요.
|
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/5/protected_environments/staging"
응답은 200 코드를 반환해야 합니다.