-
Notifications
You must be signed in to change notification settings - Fork 61
Use sed command to replace MCAD repo reference in Makefile #276
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would expect changes in the config/crd/mcad/kustomization.yaml
, are these missing?
@astefanutti |
@sutaakar oh I see, my sed-fu is not as strong as yours :). So it won't work on macOS out of the box. If we don't want to adjust the command depending on the OS, we can mandate gnu sed to be installed and used on macOS. |
That would be the best :) |
Maybe a quick note in the README can be added, WDYT? |
@astefanutti added a note in readme |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: astefanutti 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 |
Issue link
What changes have been made
Kustomize fn run is using Docker. This approach is incompatible with OpenShift CI, which doesn't provide Docker environment.
To make operator deployment being OpenShift CI friendly (and to remove a need to have specifically Docker installed for various Makefile actions) replacing the function with sed command providing same functionality.
Verification steps
Execute for example
make install
without Docker.Checks