-
Notifications
You must be signed in to change notification settings - Fork 963
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
Added pod annotation with job RetryCount #3544
Added pod annotation with job RetryCount #3544
Conversation
0d93fa9
to
62befb1
Compare
go.mod
Outdated
@@ -171,4 +171,5 @@ replace ( | |||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.30.2 | |||
k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.30.2 | |||
k8s.io/sample-controller => k8s.io/sample-controller v0.30.2 | |||
volcano.sh/apis => github.com/volcano-sh/apis v1.10.0-alpha.0.0.20240709084748-78d912ce096c |
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.
I couldn't do it without adding this line(
go get github.com/volcano-sh/apis@master
go: github.com/volcano-sh/apis@master (v1.10.0-alpha.0.0.20240709084748-78d912ce096c) requires github.com/volcano-sh/[email protected]: parsing go.mod:
module declares its path as: volcano.sh/apis
but was required as: github.com/volcano-sh/apis
Perhaps this is due to the fact that the changes have been included in the master, but have not yet been included in any tag.
As far as I understand, I still have to wait for the next tag to appear in volcano-sh/apis and then make changes again?
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.
you should modify go mod volcano.sh/apis' tag to your commit id,and then execute go mod tidy,also the prefix github.com is unnecessary.
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.
Thanks, it worked
Feat volcano-sh#3528 Signed-off-by: belo4ya <[email protected]>
62befb1
to
a739841
Compare
/lgtm |
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.
/approve
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.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: hwdef, william-wang 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 |
Added pod annotation with current Job RetryCount version:
volcano.sh/job-retry-count=<Job.Status.RetryCount>
feat #3528