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

_configuration_banner.html.haml « operations « settings « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 888625689f18ff4c53259d61249f3c034f9fd553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
%b
  = s_('PrometheusService|Auto configuration')

- if service.manual_configuration?
  .info-well.p-2.mt-2
    = s_('PrometheusService|To enable the installation of Prometheus on your clusters, deactivate the manual configuration.')
- else
  .container-fluid
    .row
      - if service.prometheus_available?
        .col-sm-2
          .svg-container
            = image_tag 'illustrations/monitoring/getting_started.svg'
        .col-sm-10
          %p.text-success.gl-mt-3
            = s_('PrometheusService|GitLab manages Prometheus on your clusters.')
          = link_to s_('PrometheusService|Manage clusters'), project_clusters_path(project), class: 'btn'
      - else
        .col-sm-2
          = image_tag 'illustrations/monitoring/loading.svg'
        .col-sm-10
          %p.gl-mt-3
            = s_('PrometheusService|Monitor your project’s environments by deploying and configuring Prometheus on your clusters.')
          = link_to s_('PrometheusService|Install Prometheus on clusters'), project_clusters_path(project), class: 'btn btn-success'