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

module Clusters
  module Gcp
    module Kubernetes
      GITLAB_SERVICE_ACCOUNT_NAME = 'gitlab'
      GITLAB_SERVICE_ACCOUNT_NAMESPACE = 'default'
      GITLAB_ADMIN_TOKEN_NAME = 'gitlab-token'
      GITLAB_CLUSTER_ROLE_BINDING_NAME = 'gitlab-admin'
      GITLAB_CLUSTER_ROLE_NAME = 'cluster-admin'
      PROJECT_CLUSTER_ROLE_NAME = 'edit'
    end
  end
end