debian-mirror-gitlab/doc/user/project/deploy_tokens/index.md

101 lines
3.7 KiB
Markdown
Raw Normal View History

2018-05-09 12:01:36 +05:30
# Deploy Tokens
> [Introduced][ce-17894] in GitLab 10.7.
Deploy tokens allow to download (through `git clone`), or read the container registry images of a project without the need of having a user and a password.
Please note, that the expiration of deploy tokens happens on the date you define,
2019-09-04 21:01:54 +05:30
at midnight UTC and that they can be only managed by [maintainers](../../permissions.md).
2018-05-09 12:01:36 +05:30
## Creating a Deploy Token
2018-12-13 13:39:08 +05:30
You can create as many deploy tokens as you like from the settings of your project:
2018-05-09 12:01:36 +05:30
1. Log in to your GitLab account.
1. Go to the project you want to create Deploy Tokens for.
2019-02-15 15:39:39 +05:30
1. Go to **Settings** > **Repository**.
1. Click on "Expand" on **Deploy Tokens** section.
2019-09-30 21:07:59 +05:30
1. Choose a name, expiry date (optional), and username (optional) for the token.
2018-05-09 12:01:36 +05:30
1. Choose the [desired scopes](#limiting-scopes-of-a-deploy-token).
1. Click on **Create deploy token**.
1. Save the deploy token somewhere safe. Once you leave or refresh
the page, **you won't be able to access it again**.
![Personal access tokens page](img/deploy_tokens.png)
2018-10-15 14:42:47 +05:30
## Revoking a deploy token
2018-05-09 12:01:36 +05:30
At any time, you can revoke any deploy token by just clicking the
respective **Revoke** button under the 'Active deploy tokens' area.
## Limiting scopes of a deploy token
Deploy tokens can be created with two different scopes that allow various
actions that a given token can perform. The available scopes are depicted in
the following table.
| Scope | Description |
| ----- | ----------- |
| `read_repository` | Allows read-access to the repository through `git clone` |
| `read_registry` | Allows read-access to [container registry] images if a project is private and authorization is required. |
2019-09-30 21:07:59 +05:30
## Deploy token custom username
2020-03-09 13:42:32 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/29639) in GitLab 12.1.
2019-09-30 21:07:59 +05:30
The default username format is `gitlab+deploy-token-#{n}`. Some tools or platforms may not support this format,
in such case you can specify custom username to be used when creating the deploy token.
2018-05-09 12:01:36 +05:30
## Usage
### Git clone a repository
To download a repository using a Deploy Token, you just need to:
1. Create a Deploy Token with `read_repository` as a scope.
2019-02-15 15:39:39 +05:30
1. Take note of your `username` and `token`.
1. `git clone` the project using the Deploy Token:
2018-05-09 12:01:36 +05:30
2020-03-09 13:42:32 +05:30
```shell
2019-09-30 21:07:59 +05:30
git clone http://<username>:<deploy_token>@gitlab.example.com/tanuki/awesome_project.git
```
2018-05-09 12:01:36 +05:30
2018-12-13 13:39:08 +05:30
Replace `<username>` and `<deploy_token>` with the proper values.
2018-05-09 12:01:36 +05:30
2018-12-13 13:39:08 +05:30
### Read Container Registry images
2018-05-09 12:01:36 +05:30
To read the container registry images, you'll need to:
1. Create a Deploy Token with `read_registry` as a scope.
2019-02-15 15:39:39 +05:30
1. Take note of your `username` and `token`.
1. Log in to GitLabs Container Registry using the deploy token:
2018-05-09 12:01:36 +05:30
2020-03-09 13:42:32 +05:30
```shell
2019-12-21 20:55:43 +05:30
docker login -u <username> -p <deploy_token> registry.example.com
2018-05-09 12:01:36 +05:30
```
2018-12-13 13:39:08 +05:30
Just replace `<username>` and `<deploy_token>` with the proper values. Then you can simply
2018-05-09 12:01:36 +05:30
pull images from your Container Registry.
2018-10-15 14:42:47 +05:30
### GitLab Deploy Token
> [Introduced][ce-18414] in GitLab 10.8.
2018-12-13 13:39:08 +05:30
There's a special case when it comes to Deploy Tokens. If a user creates one
named `gitlab-deploy-token`, the username and token of the Deploy Token will be
automatically exposed to the CI/CD jobs as environment variables: `CI_DEPLOY_USER` and
`CI_DEPLOY_PASSWORD`, respectively. With the GitLab Deploy Token, the
`read_registry` scope is implied.
After you create the token, you can login to the Container Registry using
those variables:
2020-03-09 13:42:32 +05:30
```shell
2018-12-13 13:39:08 +05:30
docker login -u $CI_DEPLOY_USER -p $CI_DEPLOY_PASSWORD $CI_REGISTRY
```
2018-10-15 14:42:47 +05:30
2020-03-09 13:42:32 +05:30
[ce-17894]: https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/17894
[ce-11845]: https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/11845
[ce-18414]: https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/18414
2019-12-04 20:38:33 +05:30
[container registry]: ../../packages/container_registry/index.md