debian-mirror-gitlab/app/views/shared/runners/_shared_runners_description.html.haml

12 lines
653 B
Text
Raw Normal View History

2021-01-03 14:25:43 +05:30
- link = link_to _('MaxBuilds'), 'https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-runnersmachine-section', target: '_blank'
2021-03-08 18:12:59 +05:30
%h4
2021-01-03 14:25:43 +05:30
= _('Shared runners')
2021-06-08 01:23:25 +05:30
.bs-callout{ data: { testid: 'shared-runners-description' } }
%p= _('These runners are shared across this GitLab instance.')
2021-01-03 14:25:43 +05:30
- if Gitlab::CurrentSettings.shared_runners_text.present?
2021-06-08 01:23:25 +05:30
= markdown(Gitlab::CurrentSettings.current_application_settings.shared_runners_text)
2021-01-03 14:25:43 +05:30
- else
2021-06-08 01:23:25 +05:30
%p= _('The same shared runner executes code from multiple projects, unless you configure autoscaling with %{link} set to 1 (which it is on GitLab.com).').html_safe % { link: link }