-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
switch from go dep to go module #581
Conversation
/assign @yebrahim @neuromage |
This would be awesome if we can pull it off. |
/test kubeflow-pipeline-e2e-test |
This is great, thanks for doing this! I had started to work on this change myself, but realized I needed a good way to keep the build reproducible. Right now, the hack in the api/Makefile relies on specific versions of code-generation tools located under vendor/. With go modules, my plan was to use Bazel to achieve the same effect. Right now, as is, I think this part will be broken. But I will try to fix it asap based off this change. |
/lgtm |
/test kubeflow-pipeline-e2e-test |
1 similar comment
/test kubeflow-pipeline-e2e-test |
Fixes #187 |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: IronPan 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 |
/lgtm |
Does the Makefile still work for you? /cc @IronPan |
Without vendoring, the Makefile will no longer work. I'm working on a PR right now to fix this properly. Sorry for the trouble @Ark-kun |
…eflow#581) * Skip get inferenceservice-config configmap for non-kfserving pod * refactor needMutate
…users permission (kubeflow#581) * add instrctions on upgrade kfp-tekton and fix multi-users permission * Apply suggestions from code review Co-authored-by: Andrew Butler <Andrew.Butler@ibm.com> * Fix markdown links after suggestions Co-authored-by: Andrew Butler <Andrew.Butler@ibm.com>
This change is