mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 19:05:18 +00:00
feat: allow configuring gitlab ssl verification
This commit is contained in:
parent
dcfc7cc54f
commit
0b00812269
3 changed files with 8 additions and 1 deletions
|
|
@ -42,6 +42,9 @@ Note that if your base branches are not protected, don't set the variables as `p
|
||||||
|
|
||||||
> **Note**: The `$CI_SERVER_FQDN` variable is available starting from GitLab version 16.10. If you're using an earlier version, this variable will not be available. However, you can combine `$CI_SERVER_HOST` and `$CI_SERVER_PORT` to achieve the same result. Please ensure you're using a compatible version or adjust your configuration.
|
> **Note**: The `$CI_SERVER_FQDN` variable is available starting from GitLab version 16.10. If you're using an earlier version, this variable will not be available. However, you can combine `$CI_SERVER_HOST` and `$CI_SERVER_PORT` to achieve the same result. Please ensure you're using a compatible version or adjust your configuration.
|
||||||
|
|
||||||
|
> **Note**: The `gitlab__SSL_VERIFY` environment variable can be used to specify the path to a custom CA certificate bundle for SSL verification. GitLab exposes the `$CI_SERVER_TLS_CA_FILE` variable, which points to the custom CA certificate file configured in your GitLab instance.
|
||||||
|
> Alternatively, SSL verification can be disabled entirely by setting `gitlab__SSL_VERIFY=false`, although this is not recommended.
|
||||||
|
|
||||||
## Run a GitLab webhook server
|
## Run a GitLab webhook server
|
||||||
|
|
||||||
1. In GitLab create a new user and give it "Reporter" role ("Developer" if using Pro version of the agent) for the intended group or project.
|
1. In GitLab create a new user and give it "Reporter" role ("Developer" if using Pro version of the agent) for the intended group or project.
|
||||||
|
|
|
||||||
|
|
@ -32,12 +32,14 @@ class GitLabProvider(GitProvider):
|
||||||
if not gitlab_url:
|
if not gitlab_url:
|
||||||
raise ValueError("GitLab URL is not set in the config file")
|
raise ValueError("GitLab URL is not set in the config file")
|
||||||
self.gitlab_url = gitlab_url
|
self.gitlab_url = gitlab_url
|
||||||
|
ssl_verify = get_settings().get("GITLAB.SSL_VERIFY", True)
|
||||||
gitlab_access_token = get_settings().get("GITLAB.PERSONAL_ACCESS_TOKEN", None)
|
gitlab_access_token = get_settings().get("GITLAB.PERSONAL_ACCESS_TOKEN", None)
|
||||||
if not gitlab_access_token:
|
if not gitlab_access_token:
|
||||||
raise ValueError("GitLab personal access token is not set in the config file")
|
raise ValueError("GitLab personal access token is not set in the config file")
|
||||||
self.gl = gitlab.Gitlab(
|
self.gl = gitlab.Gitlab(
|
||||||
url=gitlab_url,
|
url=gitlab_url,
|
||||||
oauth_token=gitlab_access_token
|
oauth_token=gitlab_access_token,
|
||||||
|
ssl_verify=ssl_verify
|
||||||
)
|
)
|
||||||
self.max_comment_chars = 65000
|
self.max_comment_chars = 65000
|
||||||
self.id_project = None
|
self.id_project = None
|
||||||
|
|
|
||||||
|
|
@ -284,6 +284,8 @@ push_commands = [
|
||||||
"/describe",
|
"/describe",
|
||||||
"/review",
|
"/review",
|
||||||
]
|
]
|
||||||
|
# Configure SSL validation for GitLab. Can be either set to the path of a custom CA or disabled entirely.
|
||||||
|
# ssl_verify = true
|
||||||
|
|
||||||
[gitea_app]
|
[gitea_app]
|
||||||
url = "https://gitea.com"
|
url = "https://gitea.com"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue