-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #973 from kwryankrattiger/improve_no_oidc_behavior
Change how `CI_OIDC_REQUIRED` works
- Loading branch information
Showing
3 changed files
with
67 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Gitlab runners | ||
|
||
There are three types of runners with increasing levels of access to cluster secrets. | ||
|
||
1. `public` | ||
2. `protected` | ||
3. `signing` | ||
|
||
## Public & Protected runners | ||
|
||
The `public` and `protected` runners provide multiple architectures and base OSs that run across a range of AWS nodes. | ||
|
||
* Windows | ||
* `x86_64_v2` | ||
* Linux | ||
* `x86_64_v2` | ||
* `x86_64_v3` | ||
* `x86_64_v4` | ||
* `graviton2` | ||
* `graviton3` | ||
|
||
### Special Variables | ||
|
||
* `CI_OIDC_REQUIRED`: available to be set for runners with the `service` tag. | ||
This variable can be used to skip OIDC configuration. | ||
|
||
## Signing Runners | ||
|
||
The `signing` runners use either `x86_64_v3` or `x86_64_v4` Linux machines. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters