-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
🐛 Fix autoscaler image repo #9353
🐛 Fix autoscaler image repo #9353
Conversation
/assign @killianmuldoon @chrischdi |
/cherry-pick release-1.5 |
@sbueringer: once the present PR merges, I will cherry-pick it on top of release-1.5 in a new PR and assign it to you. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/test pull-cluster-api-e2e-full-main Let's merge after e2e-full this time |
/lgtm |
LGTM label has been added. Git tree hash: f81304fbae6795f547e7f455ff260a8b9d093c1d
|
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.
/lgtm
/approve
(pending ci)
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: killianmuldoon 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 |
/lgtm |
Looks to be faling because it doesn't have the RBAC to list MachinePools - https://storage.googleapis.com/kubernetes-jenkins/pr-logs/pull/kubernetes-sigs_cluster-api/9353/pull-cluster-api-e2e-full-main/1697564669507538944/artifacts/clusters/autoscaler-v9mkfg/logs/cluster-autoscaler-system/cluster-autoscaler/cluster-autoscaler-585fd74b59-88hfr/cluster-autoscaler.log |
Thx, will fix! I think they implemented this between 1.26 and 1.28 |
Signed-off-by: Stefan Büringer buringerst@vmware.com
6f82954
to
9793a09
Compare
@@ -374,7 +374,7 @@ func getAuthenticationTokenForAutoscaler(ctx context.Context, managementClusterP | |||
{ | |||
Verbs: []string{"get", "list", "update", "watch"}, | |||
APIGroups: []string{"cluster.x-k8s.io"}, | |||
Resources: []string{"machinedeployments", "machinedeployments/scale", "machines", "machinesets"}, | |||
Resources: []string{"machinedeployments", "machinedeployments/scale", "machinepools", "machinepools/scale", "machines", "machinesets"}, |
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.
/test pull-cluster-api-e2e-full-main |
Added this test to the list of e2e tests we should extend as part of CC+MP support |
/test pull-cluster-api-e2e-full-main Didn't run the last time for some reason 🤔 |
/hold cancel |
/lgtm |
LGTM label has been added. Git tree hash: 398c89361c0819f8761f5ca252f6d6ed2f353b47
|
@sbueringer: new pull request created: #9357 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Signed-off-by: Stefan Büringer buringerst@vmware.com
What this PR does / why we need it:
Fixes the image repo.
Apparently new images are published to the new registry
Broke via #9349 (https://prow.k8s.io/view/gs/kubernetes-jenkins/logs/periodic-cluster-api-e2e-main/1697533477378854912)
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #