summaryrefslogtreecommitdiff
path: root/tooling
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-11-16 15:10:52 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-11-16 15:10:52 +0000
commit0552020767452da44de2bf5424096f2cb2ea6bf5 (patch)
tree9579d9f0ad3c730c33883130ec23420e80d1c5dc /tooling
parente3748b81ca29b24197276767e245158d8f84fda3 (diff)
downloadgitlab-ce-0552020767452da44de2bf5424096f2cb2ea6bf5.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'tooling')
-rw-r--r--tooling/lib/tooling/helm3_client.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/tooling/lib/tooling/helm3_client.rb b/tooling/lib/tooling/helm3_client.rb
index 82ebe3f51dc..d83dbeac76b 100644
--- a/tooling/lib/tooling/helm3_client.rb
+++ b/tooling/lib/tooling/helm3_client.rb
@@ -37,7 +37,6 @@ module Tooling
def delete(release_name:)
run_command([
'uninstall',
- %(--namespace "#{namespace}"),
release_name
])
end
@@ -60,7 +59,6 @@ module Tooling
def raw_releases(page, args = [])
command = [
'list',
- %(--namespace "#{namespace}"),
%(--max #{PAGINATION_SIZE}),
%(--offset #{PAGINATION_SIZE * page}),
%(--output json),