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

init_command.rb « helm « kubernetes « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a02e64561f62bb147da57bb374edae4532504e61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Gitlab
  module Kubernetes
    module Helm
      class InitCommand < BaseCommand
        def generate_script
          super + [
            init_helm_command
          ].join("\n")
        end

        private

        def init_helm_command
          "helm init >/dev/null"
        end
      end
    end
  end
end