Skip to content

Commit

Permalink
Merge pull request redpanda-data#24495 from redpanda-data/fix-operato…
Browse files Browse the repository at this point in the history
…r-v1-byoc

[rptest] Use "redpanda" namespace for KubeNodeShell
  • Loading branch information
clee authored Dec 9, 2024
2 parents 5a38373 + 4bd5b4b commit 2a9f07c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/rptest/clients/kubectl.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ class KubeNodeShell():
def __init__(self,
kubectl: KubectlTool,
node_name: str,
namespace: str = 'redpanda-node-setup',
namespace: str = 'redpanda',
clean=False) -> None:
self.kubectl = kubectl
self.node_name = node_name
Expand Down
2 changes: 1 addition & 1 deletion tests/rptest/services/cloud_broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def inject_script(self, script_name):
# Copy agent -> broker node
remote_path = os.path.join("/tmp", script_name)
_cp_cmd = self._kubeclient._ssh_prefix() + [
'kubectl', '-n', 'redpanda-node-setup', 'cp', script_name,
'kubectl', '-n', 'redpanda', 'cp', script_name,
f"{self.nodeshell.pod_name}:{remote_path}"
]
self.logger.debug(_cp_cmd)
Expand Down

0 comments on commit 2a9f07c

Please sign in to comment.