-
Notifications
You must be signed in to change notification settings - Fork 185
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
Use podman cp over podman run cat/ls when fetching CSVs for Rook #2495
base: main
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: GingerGeek The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Hi @GingerGeek. Thanks for your PR. I'm waiting for a red-hat-storage member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
/cc @subhamkrai I think you were working on something else related to this, PTAL |
Signed-off-by: Zed Spencer-Milnes <[email protected]>
Thanks, I also noted that the Rook CRDs currently in the repo all have CRLF line endings. The |
@GingerGeek: The following test failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
We won't be needing these changes, once we are set to take this PR in #2492 |
It's not a blocker no, especially if you're planning to switch away. We currently hold this PR as a patch on our build pipeline for this repository. cc/ @SupremeMortal |
@GingerGeek Will PR #2492 still work for you if it's using |
For what it's worth, I have some dev patches where I"m using kustomize to deploy rook-ceph-operator from within this repo, and moving away from using |
I'm not sure, if there's an underlying use of a running container then it would likely fail in our current pipelines as podman-in-okd-pods is non-trivial if you want to maintain non-privileged running. We may have to bite the bullets and just start running builds in privileged contexts. It's worth mentioning that this method of us taking a project like this and running the build ourself is a somewhat stop-gap measure to help bootstrap operators-on-okd. Our overall goal would be for the OKD catalog to be a first-class destination for any upstream operators that package into Openshift. So ie you folks on this project would have CI/CD to build operator bundles and then submit that into our catalog. Happy to partake in any community process that would help make that happen |
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
When building a pipeline (okd-project/okd-operator-pipeline) to build and assemble the storage operators, we had issues with building OCS due to running of containers-in-a-pod as part of the pipeline.
Running a container requires additional privileges that we are trying to avoid giving to our Tekton pipeline and in this case it seemed using
podman cp
would provide a slightly simpler solution.