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

kubernetes.rb « gcp « clusters « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74ef68eb58f713a0265eb17a05d1942e66b68d4a (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Clusters
  module Gcp
    module Kubernetes
      SERVICE_ACCOUNT_NAME = 'gitlab'
      CLUSTER_ROLE_BINDING_NAME = 'gitlab-admin'
      CLUSTER_ROLE_NAME = 'cluster-admin'
    end
  end
end