-
Notifications
You must be signed in to change notification settings - Fork 697
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
Labels in Python client are out of date #1587
Comments
person142
added a commit
to person142/training-operator
that referenced
this issue
May 5, 2022
Currently certain operations like tailing logs from the Python sdk against the latest version of the operator due to a label mistmatch; fix that. Closes kubeflow#1587.
Thanks for the issue. Would you help fix it? I saw a commit person142@c1c155e here. |
1 task
Yes indeed - #1588 is the PR. Had to wait a bit to get approval on my end to make it. |
person142
added a commit
to person142/training-operator
that referenced
this issue
Jun 2, 2022
Currently certain operations like tailing logs from the Python sdk against the latest version of the operator due to a label mistmatch; fix that. Closes kubeflow#1587.
google-oss-prow bot
pushed a commit
that referenced
this issue
Jun 3, 2022
Currently certain operations like tailing logs from the Python sdk against the latest version of the operator due to a label mistmatch; fix that. Closes #1587.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the latest version of the Python sdk and operator, a call like
will fail with an error like
This is because the Python client still looks for the label
job-role
:https://github.com/kubeflow/training-operator/blob/master/sdk/python/kubeflow/training/constants/constants.py#L34
whereas in kubeflow/common@6c9fe11 the label was updated to the fully-qualified
training.kubeflow.org/job-role
.Some testing reveals that the 1.3 release is the last version to work with the current version of the sdk.
The text was updated successfully, but these errors were encountered: