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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/clusters/clusters/_integrations.html.haml')
-rw-r--r--app/views/clusters/clusters/_integrations.html.haml19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/views/clusters/clusters/_integrations.html.haml b/app/views/clusters/clusters/_integrations.html.haml
new file mode 100644
index 00000000000..d718e3ecb26
--- /dev/null
+++ b/app/views/clusters/clusters/_integrations.html.haml
@@ -0,0 +1,19 @@
+.settings.expanded.border-0.m-0
+ %p
+ = s_('ClusterIntegration|Integrations enable you to integrate your cluster as part of your GitLab workflow.')
+ = link_to _('Learn more'), help_page_path('user/clusters/integrations.md'), target: '_blank'
+ .settings-content#advanced-settings-section
+ - if can?(current_user, :admin_cluster, @cluster)
+ .sub-section.form-group
+ = form_for @prometheus_integration, url: @cluster.integrations_path, as: :integration, method: :post, html: { class: 'js-cluster-integrations-form' } do |form|
+ = form.hidden_field :application_type
+ .form-group
+ .gl-form-checkbox.custom-control.custom-checkbox
+ = form.check_box :enabled, { class: 'custom-control-input'}
+ = form.label :enabled, s_('ClusterIntegration|Enable Prometheus integration'), class: 'custom-control-label'
+ .gl-form-group
+ .form-text.text-gl-muted
+ - link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: help_page_path("user/clusters/integrations", anchor: "prometheus-cluster-integration") }
+ - link_end = '</a>'.html_safe
+ = html_escape(s_('ClusterIntegration|Before you enable this integration, follow the %{link_start}documented process%{link_end}.')) % { link_start: link_start, link_end: link_end }
+ = form.submit _('Save changes'), class: 'btn gl-button btn-success'