BigW Consortium Gitlab

index.html.haml 958 Bytes
Newer Older
1 2
- breadcrumb_title 'Kubernetes'
- page_title "Kubernetes Clusters"
3

Filipa Lacerda committed
4
.clusters-container
5 6 7 8 9
  - if @clusters.empty?
    = render "empty_state"
  - else
    .top-area.adjust
      .nav-text
10
        = s_("ClusterIntegration|Kubernetes clusters can be used to deploy applications and to provide Review Apps for this project")
Filipa Lacerda committed
11 12 13
    .ci-table.js-clusters-list
      .gl-responsive-table-row.table-row-header{ role: "row" }
        .table-section.section-30{ role: "rowheader" }
14
          = s_("ClusterIntegration|Kubernetes cluster")
Filipa Lacerda committed
15
        .table-section.section-30{ role: "rowheader" }
16
          = s_("ClusterIntegration|Environment scope")
Filipa Lacerda committed
17 18 19 20
        .table-section.section-30{ role: "rowheader" }
          = s_("ClusterIntegration|Project namespace")
        .table-section.section-10{ role: "rowheader" }
      - @clusters.each do |cluster|
21
        = render "cluster", cluster: cluster.present(current_user: current_user)
22
    = paginate @clusters, theme: "gitlab"