summaryrefslogtreecommitdiff
path: root/app/views/projects/clusters/_banner.html.haml
blob: 76a66fb92a27a90fe4480058965bf834d80ae3bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%h4= s_('ClusterIntegration|Enable cluster integration')
.settings-content

  .hidden.js-cluster-error.alert.alert-danger.alert-block.append-bottom-10{ role: 'alert' }
    = s_('ClusterIntegration|Something went wrong while creating your cluster on Google Kubernetes Engine')
    %p.js-error-reason

  .hidden.js-cluster-creating.alert.alert-info.alert-block.append-bottom-10{ role: 'alert' }
    = s_('ClusterIntegration|Cluster is being created on Google Kubernetes Engine...')

  .hidden.js-cluster-success.alert.alert-success.alert-block.append-bottom-10{ role: 'alert' }
    = s_('ClusterIntegration|Cluster was successfully created on Google Kubernetes Engine. Refresh the page to see cluster\'s details')

  %p
    - if @cluster.enabled?
      - if can?(current_user, :update_cluster, @cluster)
        = s_('ClusterIntegration|Cluster integration is enabled for this project. Disabling this integration will not affect your cluster, it will only temporarily turn off GitLab\'s connection to it.')
      - else
        = s_('ClusterIntegration|Cluster integration is enabled for this project.')
    - else
      = s_('ClusterIntegration|Cluster integration is disabled for this project.')