github.com/kubri/kubri@v0.5.1-0.20240317001612-bda2aaef967e/website/docs/configuration/source/gitlab.md (about)

     1  ---
     2  sidebar_position: 1
     3  sidebar_label: GitLab
     4  ---
     5  
     6  # GitLab Source
     7  
     8  Automatically gets your GitLab releases to generate your repositories.
     9  
    10  ## Environment variables
    11  
    12  | Name           | Description                                                                                    |
    13  | -------------- | ---------------------------------------------------------------------------------------------- |
    14  | `GITLAB_TOKEN` | A personal access token for accessing your GitLab releases. Required for private repositories. |
    15  
    16  ## Configuration
    17  
    18  | Name    | Description                                                       |
    19  | ------- | ----------------------------------------------------------------- |
    20  | `type`  | Must be `gitlab`.                                                 |
    21  | `owner` | Repository owner i.e. username or organisation.                   |
    22  | `repo`  | Repository name.                                                  |
    23  | `url`   | The URL of your GitLab instance. Defaults to `https://gitlab.com` |
    24  
    25  ## Example
    26  
    27  ```yaml
    28  source:
    29    type: gitlab
    30    owner: my-org
    31    repo: my-repo
    32    url: https://repo.example.com
    33  ```