-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
doc: clarify that when is multigroup it is required update the Dockerfile as well #3678
Comments
Users would also have to move their existing API in |
This should be documented upstream since this is a purely kubebuilder related issue. |
hi @joelanford,
Yes
Upstream has a command Also, wdyt about we have this command as a plugin as well in upstream to use here. |
Hi, I've reproduced the reported issue here when working on an operator project. Is there some way I can help with this? Thank you. |
Hi @miguelsorianod, IMO what I think that we really to do is:
@joelanford @estroz wdyt? |
…ups (#4156) **Description of the change:** - Update kubebuilder dependency (See: kubernetes-sigs/kubebuilder@36124ae...9c02d55) - Add edit command which allows multigroup support - Align SDK with Kubebuilder and address bug fixes **Motivation for the change:** - Solve tech-debt and keep both projects aligned - Close the issue: #3678 and provide the same facility that has in upstream to change the layout to support multigroup - Close the issue: #4157
It is done in the PR #4156 |
…ups (operator-framework#4156) **Description of the change:** - Update kubebuilder dependency (See: kubernetes-sigs/kubebuilder@36124ae...9c02d55) - Add edit command which allows multigroup support - Align SDK with Kubebuilder and address bug fixes **Motivation for the change:** - Solve tech-debt and keep both projects aligned - Close the issue: operator-framework#3678 and provide the same facility that has in upstream to change the layout to support multigroup - Close the issue: operator-framework#4157 Signed-off-by: reinvantveer <rein.van.t.veer@geodan.nl>
…ups (operator-framework#4156) **Description of the change:** - Update kubebuilder dependency (See: kubernetes-sigs/kubebuilder@36124ae...9c02d55) - Add edit command which allows multigroup support - Align SDK with Kubebuilder and address bug fixes **Motivation for the change:** - Solve tech-debt and keep both projects aligned - Close the issue: operator-framework#3678 and provide the same facility that has in upstream to change the layout to support multigroup - Close the issue: operator-framework#4157 Signed-off-by: rearl <rearl@secureworks.com>
Steps
make docker-build
The following issue will be faced
COPY failed: stat /var/lib/docker/tmp/docker-builder031903601/api: no such file or directory
make: *** [Makefile:73: docker-build] Error 1
Solution
Update the Dockerfile.
Replace:
COPY api/ api/
With:
COPY apis/ apis/
Goal of this task
The text was updated successfully, but these errors were encountered: