-
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
π capd: fix ignition to also set the kube-proxy configuration to skip setting sysctls #9894
π capd: fix ignition to also set the kube-proxy configuration to skip setting sysctls #9894
Conversation
/test help |
@chrischdi: The specified target(s) for
The following commands are available to trigger optional jobs:
Use
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. |
/cherry-pick release-1.6 |
@chrischdi: once the present PR merges, I will cherry-pick it on top of release-1.6 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 help |
@chrischdi: The specified target(s) for
The following commands are available to trigger optional jobs:
Use
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 |
/assign sbueringer |
test/infrastructure/docker/internal/provisioning/ignition/kindadapter.go
Outdated
Show resolved
Hide resolved
7b99223
to
8ded744
Compare
/test pull-cluster-api-e2e-full-main |
/lgtm Thank you very much!! Very nice troubleshooting! /hold |
LGTM label has been added. Git tree hash: f1e7708ef8e2b06327ae8e7e8b179aee02c61488
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sbueringer 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 |
Tested locally, looks good to merge after successful e2e. /hold cancel |
@chrischdi: new pull request created: #9895 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. |
What this PR does / why we need it:
While developing for k8s v1.29 support (#9872 and #9890) ignition tests started to fail because kube-proxy was not able to start due to the following error:
It turns out that we are adding custom kube-proxy configuration when using cloud-init in capd already for a long time. This did not happen for ignition.
With k8s v1.29, kube-proxy seems to have changed its behaviour so it wanted to set the sysctls when
maxPerCore
was set tonil
.This fixes the issue by adding the configuration similar to what we do for cloud-init in CAPD.
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 #
/area provider/infrastructure-docker