summaryrefslogtreecommitdiff
path: root/app/views/projects/clusters/_advanced_settings.html.haml
blob: 7032b892029439f0decab237a242d76abf3b3a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- if can?(current_user, :admin_cluster, @cluster)
  - if @cluster.managed?
    .append-bottom-20
      %label.append-bottom-10
        = s_('ClusterIntegration|Google Kubernetes Engine')
      %p
        - link_gke = link_to(s_('ClusterIntegration|Google Kubernetes Engine'), @cluster.gke_cluster_url, target: '_blank', rel: 'noopener noreferrer')
        = s_('ClusterIntegration|Manage your cluster by visiting %{link_gke}').html_safe % { link_gke: link_gke }

  .well.form-group
    %label.text-danger
      = s_('ClusterIntegration|Remove cluster integration')
    %p
      = s_('ClusterIntegration|Removing cluster integration will remove the cluster configuration you have added to this project. It will not delete your cluster on Google Kubernetes Engine.')
    = link_to(s_('ClusterIntegration|Remove integration'), namespace_project_cluster_path(@project.namespace, @project, @cluster.id), method: :delete, class: 'btn btn-danger', data: { confirm: "Are you sure you want to remove cluster integration from this project? This will not delete your cluster on Google Kubernetes Engine"})