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

_cloud_provider_selector.html.haml « cloud_providers « clusters « clusters « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 321fb854e0df6e9c395bf0f4051e1dc01ff6ecb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
- gke_label = s_('ClusterIntegration|Google GKE')
- eks_label = s_('ClusterIntegration|Amazon EKS')
- create_cluster_label = s_('ClusterIntegration|Where do you want to create a cluster?')
.gl-p-5
  %h4.gl-mb-5
    = create_cluster_label
  .gl-display-flex
    = render partial: 'clusters/clusters/cloud_providers/cloud_provider_button',
      locals: { provider: 'aws', label: eks_label, logo_path: 'illustrations/logos/amazon_eks.svg' }
    = render partial: 'clusters/clusters/cloud_providers/cloud_provider_button',
      locals: { provider: 'gcp', label: gke_label, logo_path: 'illustrations/logos/google_gke.svg', last: true }