-
Notifications
You must be signed in to change notification settings - Fork 244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make functions for executing run command reusable #6277
Make functions for executing run command reusable #6277
Conversation
✅ Deploy Preview for odo-docusaurus-preview canceled.
|
Kudos, SonarCloud Quality Gate passed!
|
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rm3l The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test v4.11-integration-e2e |
1 similar comment
/test v4.11-integration-e2e |
What type of PR is this:
/kind code-refactoring
What does this PR do / why we need it:
We need to reuse the code to execute a run command for the Podman platform
The
adapterHandler
(renamedrunHandler
) now uses theExecuteRunCommand
function from thepkg/component
package, instead of inlining the code.ExecuteRunCommand
accepts a platformClient instead of a kubeClient, to be usable for other platforms.