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/reset_command.rb')
-rw-r--r--lib/gitlab/kubernetes/helm/reset_command.rb15
1 files changed, 1 insertions, 14 deletions
diff --git a/lib/gitlab/kubernetes/helm/reset_command.rb b/lib/gitlab/kubernetes/helm/reset_command.rb
index 13176360227..f1f7938039c 100644
--- a/lib/gitlab/kubernetes/helm/reset_command.rb
+++ b/lib/gitlab/kubernetes/helm/reset_command.rb
@@ -3,18 +3,9 @@
module Gitlab
module Kubernetes
module Helm
- class ResetCommand
- include BaseCommand
+ class ResetCommand < BaseCommand
include ClientCommand
- attr_reader :name, :files
-
- def initialize(name:, rbac:, files:)
- @name = name
- @files = files
- @rbac = rbac
- end
-
def generate_script
super + [
reset_helm_command,
@@ -23,10 +14,6 @@ module Gitlab
].join("\n")
end
- def rbac?
- @rbac
- end
-
def pod_name
"uninstall-#{name}"
end