summaryrefslogtreecommitdiff
path: root/app/views/projects/clusters/index.html.haml
blob: 17b244f4bf7e18bf6dbdf54d419fecf03eee3005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- breadcrumb_title 'Kubernetes'
- page_title "Kubernetes Clusters"

.clusters-container
  - if @clusters.empty?
    = render "empty_state"
  - else
    .top-area.adjust
      .nav-text
        = s_("ClusterIntegration|Kubernetes clusters can be used to deploy applications and to provide Review Apps for this project")
    .ci-table.js-clusters-list
      .gl-responsive-table-row.table-row-header{ role: "row" }
        .table-section.section-30{ role: "rowheader" }
          = s_("ClusterIntegration|Kubernetes cluster")
        .table-section.section-30{ role: "rowheader" }
          = s_("ClusterIntegration|Environment scope")
        .table-section.section-30{ role: "rowheader" }
          = s_("ClusterIntegration|Project namespace")
        .table-section.section-10{ role: "rowheader" }
      - @clusters.each do |cluster|
        = render "cluster", cluster: cluster.present(current_user: current_user)
    = paginate @clusters, theme: "gitlab"