-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
kube-apiserver-healthcheck: actually enable on 1.17 #9095
kube-apiserver-healthcheck: actually enable on 1.17 #9095
Conversation
I expect this to fail until we merge #9096 |
We cherry picked, but now we need to activate the feature.
f612af2
to
11b0b30
Compare
@@ -296,7 +296,7 @@ func (b *KubeAPIServerOptionsBuilder) BuildOptions(o interface{}) error { | |||
c.AnonymousAuth = fi.Bool(false) | |||
} | |||
|
|||
if b.IsKubernetesGTE("1.18") { | |||
if b.IsKubernetesGTE("1.17") { |
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'll want to change this on master branch as well. How about first landing to master and then cherrypicking?
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.
Fair point, that's an easy follow up.
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.
Oops - will send PR to master now :-)
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 @justinsb, I definitely support getting this in.
/lgtm
/approve
@@ -296,7 +296,7 @@ func (b *KubeAPIServerOptionsBuilder) BuildOptions(o interface{}) error { | |||
c.AnonymousAuth = fi.Bool(false) | |||
} | |||
|
|||
if b.IsKubernetesGTE("1.18") { | |||
if b.IsKubernetesGTE("1.17") { |
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.
Fair point, that's an easy follow up.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: justinsb, mikesplain 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 |
We cherry picked, but now we need to activate the feature.