-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Add the ability to watch fields of a replication controller #5971
Conversation
Adhoc and unittest testing done, e2e still running. |
switch label { | ||
case "name": | ||
return "name", value, nil | ||
case "CurrentState.Replicas": |
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.
"currentState.replicas" for consistency?
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 was going for consistency with pods, still think currentState is better?
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.
Yeah pods is unfortunately wrong, take a look at events--it's lowercase.
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.
done
0144d87
to
b0068d0
Compare
PTAL |
LGTM - shippable looks like a flake |
e2e done |
Looking at travis failure, which seems to be for a different apiversion |
This should be good to go, the failures were flakes and didn't repro locally or on the rerun |
All checks are green so merging. |
Add the ability to watch fields of a replication controller
With this change clients can watch on a specific controller's status.replicas without polling pods/rcs. This is needed for #5745 and #5884.