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: 21a09891ac44fa3f64107447e55b756bc934d4cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

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