summaryrefslogtreecommitdiff
path: root/app/views/projects/services/prometheus/_configuration_banner.html.haml
diff options
context:
space:
mode:
authorMayra Cabrera <mcabrera@gitlab.com>2018-02-26 22:07:17 +0000
committerStan Hu <stanhu@gmail.com>2018-02-26 22:07:17 +0000
commit3364d5f4082afd243094d6c75ca059ea556e04ff (patch)
treed424a182c475d5cd63262311553d5c30a780a13d /app/views/projects/services/prometheus/_configuration_banner.html.haml
parentcce53020b0c1c06aa9298294aaac01cb35d7c1fc (diff)
downloadgitlab-ce-3364d5f4082afd243094d6c75ca059ea556e04ff.tar.gz
Resolve "Error 500 on route "/admin/application_settings/services/1882/edit" -> edit Prometheus Service Template"
Diffstat (limited to 'app/views/projects/services/prometheus/_configuration_banner.html.haml')
-rw-r--r--app/views/projects/services/prometheus/_configuration_banner.html.haml26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/views/projects/services/prometheus/_configuration_banner.html.haml b/app/views/projects/services/prometheus/_configuration_banner.html.haml
new file mode 100644
index 00000000000..2cc2a6b2b5b
--- /dev/null
+++ b/app/views/projects/services/prometheus/_configuration_banner.html.haml
@@ -0,0 +1,26 @@
+%h4
+ = s_('PrometheusService|Auto configuration')
+
+- if service.manual_configuration?
+ .well
+ = s_('PrometheusService|To enable the installation of Prometheus on your clusters, deactivate the manual configuration below')
+- else
+ .container-fluid
+ .row
+ - if service.prometheus_installed?
+ .col-sm-2
+ .svg-container
+ = image_tag 'illustrations/monitoring/getting_started.svg'
+ .col-sm-10
+ %p.text-success.prepend-top-default
+ = s_('PrometheusService|Prometheus is being automatically managed 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.prepend-top-default
+ = s_('PrometheusService|Automatically deploy and configure Prometheus on your clusters to monitor your project’s environments')
+ = link_to s_('PrometheusService|Install Prometheus on clusters'), project_clusters_path(project), class: 'btn btn-success'
+
+%hr