-
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
[Test/sample] Fix the model version in kubeflow_tf_serving sample to avoid potential conflict. #2170
[Test/sample] Fix the model version in kubeflow_tf_serving sample to avoid potential conflict. #2170
Conversation
Adding the randomization in the sample itself is not a good practice. It's supposed to be the sample test infra's work to pass in different model names due to cluster sharing among test retries. Could we start with a placeholder implementation? since the model name as well as the input/output could potentially use this placeholder. |
However, to unblock the team, we can merge this one now. |
For the placeholder, I have two options in mind:
Shall we begin with the first one to unblock things? |
That sounds great. We can start with two placeholders: TIMESTAMP and COMMITTAG. becomes |
Sounds good, can you help me approve plz? Thanks. |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: gaoning777 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 |
Please link the issue you created here to keep in track. |
Triaging issue #2171 |
When there is no new commit detected in a PR, PULL_PULL_SHA will be reused, causing conflict in the export model path.
This can be fixed by using timestamp as the version number. See #2047 for context.
This change is