summaryrefslogtreecommitdiff
path: root/lib/gitlab/kubernetes/kubectl_cmd.rb
blob: 981eb5681dcf95b592e08d3a8776ed97d7587290 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Gitlab
  module Kubernetes
    module KubectlCmd
      class << self
        def delete(*args)
          %w(kubectl delete).concat(args).shelljoin
        end

        def apply_file(filename, *args)
          raise ArgumentError, "filename is not present" unless filename.present?

          %w(kubectl apply -f).concat([filename], args).shelljoin
        end
      end
    end
  end
end