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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/kubernetes/helm/patch_command.rb')
-rw-r--r--lib/gitlab/kubernetes/helm/patch_command.rb16
1 files changed, 5 insertions, 11 deletions
diff --git a/lib/gitlab/kubernetes/helm/patch_command.rb b/lib/gitlab/kubernetes/helm/patch_command.rb
index ed7a5c2b2d6..1a5fab116bd 100644
--- a/lib/gitlab/kubernetes/helm/patch_command.rb
+++ b/lib/gitlab/kubernetes/helm/patch_command.rb
@@ -5,23 +5,21 @@
module Gitlab
module Kubernetes
module Helm
- class PatchCommand
- include BaseCommand
+ class PatchCommand < BaseCommand
include ClientCommand
- attr_reader :name, :files, :chart, :repository
+ attr_reader :chart, :repository
attr_accessor :version
- def initialize(name:, chart:, files:, rbac:, version:, repository: nil)
+ def initialize(chart:, version:, repository: nil, **args)
+ super(**args)
+
# version is mandatory to prevent chart mismatches
# we do not want our values interpreted in the context of the wrong version
raise ArgumentError, 'version is required' if version.blank?
- @name = name
@chart = chart
@version = version
- @rbac = rbac
- @files = files
@repository = repository
end
@@ -35,10 +33,6 @@ module Gitlab
].compact.join("\n")
end
- def rbac?
- @rbac
- end
-
private
def upgrade_command