7ebc18d1b3
Correspondingly, use the token of the gitlab service account, vs the default service account token which will have no privs.
11 lines
229 B
Ruby
11 lines
229 B
Ruby
# 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
|