summaryrefslogtreecommitdiff
path: root/lib/gitlab/kubernetes/helm/client_command.rb
blob: 72bafc07bf0eaddb466207c9e3eaedda0a5fb58d (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
module Gitlab
  module Kubernetes
    module Helm
      module ClientCommand
        def init_command
          # Here we are always upgrading to the latest version of Tiller when
          # installing an app. We ensure the helm version stored in the
          # database is correct by also updating this after transition to
          # :installed,:updated in Clusters::Concerns::ApplicationStatus
          'helm init --upgrade'
        end

        def wait_for_tiller_command
          # This is necessary to give Tiller time to restart after upgrade.
          # Ideally we'd be able to use --wait but cannot because of
          # https://github.com/helm/helm/issues/4855
          'for i in $(seq 1 30); do helm version && break; sleep 1s; echo "Retrying ($i)..."; done'
        end

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