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

client_command.rb « v2 « helm « kubernetes « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b15af9aeeae978f1ffee72ca4ca3effb31a506b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

module Gitlab
  module Kubernetes
    module Helm
      module V2
        module ClientCommand
          def init_command
            <<~SHELL.chomp
              export HELM_HOST="localhost:44134"
              tiller -listen ${HELM_HOST} -alsologtostderr &
              helm init --client-only
            SHELL
          end

          def repository_command
            ['helm', 'repo', 'add', name, repository].shelljoin if repository
          end

          private

          def repository_update_command
            'helm repo update'
          end
        end
      end
    end
  end
end