8004508943
Bump the helm and kubectl used in our Kubernetes integration, used e.g. to install apps. Note I have only bumped to the latest patch of the v1.11 series for kubectl as GKE clusters are still on 1.10/1.11
14 lines
358 B
Ruby
14 lines
358 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Kubernetes
|
|
module Helm
|
|
HELM_VERSION = '2.12.3'.freeze
|
|
KUBECTL_VERSION = '1.11.7'.freeze
|
|
NAMESPACE = 'gitlab-managed-apps'.freeze
|
|
SERVICE_ACCOUNT = 'tiller'.freeze
|
|
CLUSTER_ROLE_BINDING = 'tiller-admin'.freeze
|
|
CLUSTER_ROLE = 'cluster-admin'.freeze
|
|
end
|
|
end
|
|
end
|