Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Chandler <wchandler@gitlab.com>2023-01-31 18:56:12 +0300
committerWill Chandler <wchandler@gitlab.com>2023-02-02 18:07:03 +0300
commit5ed08e744c76a205991a2e76a229ecc8813a70f1 (patch)
tree8c462627c46d59da830518a08fa52d7e2b27b0df /_support
parenta063796a17d5b1330dce87ed7549fb5b92d0f4cc (diff)
benchmarking: Fix gitlab-shell build
With 51ea0f5 (Add support for the gssapi-with-mic auth method, 2023-01-23), gitlab-shell now requires native gssapi libraries to build. Update the ansible task to install the required packages.
Diffstat (limited to '_support')
-rw-r--r--_support/benchmarking/roles/gitaly/tasks/setup_gitlab_shell.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/_support/benchmarking/roles/gitaly/tasks/setup_gitlab_shell.yml b/_support/benchmarking/roles/gitaly/tasks/setup_gitlab_shell.yml
index 86726320b..21143a729 100644
--- a/_support/benchmarking/roles/gitaly/tasks/setup_gitlab_shell.yml
+++ b/_support/benchmarking/roles/gitaly/tasks/setup_gitlab_shell.yml
@@ -1,4 +1,13 @@
---
+- name: Install gitlab-shell build dependencies
+ apt:
+ name:
+ - krb5-user
+ - libgssapi-krb5-2
+ - libkrb5-dev
+ - libsasl2-modules-gssapi-mit
+ state: present
+
- name: Create /opt/gitlab-shell directory
file:
path: /opt/gitlab-shell