-
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
SDK/DSL/Compiler - Fixed handling of empty pipeline name #1009
SDK/DSL/Compiler - Fixed handling of empty pipeline name #1009
Conversation
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Ark-kun 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 |
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.
/lgtm
This reverts commit 6d60976.
* trained model api * remove frameworks' version information
* Trained model api (kubeflow#1009) * trained model api * remove frameworks' version information trainedmodel related code add groupversion_info generate deepcopy add v1beta1 serving api remove InferenceService depedency fix optional comment rename MultiModelConfigMapName to ModelConfigMapName and rename tainedmodel to tm rename multiModelConfigMapName to modelConfigName initialize trainedmodel controller rename multimodelconfig pkg to modelconfig refactor shardingstrategy refactor strategy generate crd * rebase master * update modelconfig when reconciling TrainedModel * create an instance of modelconfig reconciler in trainedmodel controller's loop otherwise the reconciler is a nil pointer * add unit test * rename * rename * fix unit tests * revert changes for v1alpha2/openapi_generated.go * remove config/crd/serving.kubeflow.org_inferencerouters.yaml * rename MultiModelConfigVolumeName to ModelConfigVolumeName * rename trainedmodel's predictorModel to inference * inline error check * fix log * annotate error * remove unnecessary error check * rename package * remove unit test for delete as it does not trigger a delete event * refactor sharding strategy * rename configmap to modelConfig * rename ConfigMapReconciler to ModelConfigReconciler * fmt * pass modelconfig reconciler to TrainedModelReconciler as a field * rename TrainedModelSpec.Inference to TrainedModelSpec.model * change Result{Requeue: true, RequeueAfter: 10 * time.Second} to Result{} since the framework will requeue when err is not nil * fix plural name * fix description * fix unit test name * add argo retry * changne retry to 3 * add comma * revert makefile so it only deploys v1alpha1 * register v1beta1 scheme * fix trainedmodel rbac * fix trainedmodel crd per kubernetes-retired/cluster-registry#255 * fix trainedmodel crd from makefile * run make manifests * clean up * fix comment * install kfserving sdk to user home folder
Fixes #825
This change is