forked from kubernetes-sigs/cluster-api
-
Notifications
You must be signed in to change notification settings - Fork 25
OCPBUGS-69434: openshift: CAPI IPAM TechPreviewNoUpgrade: set webhooks failurepolicy: Ignore #256
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
Merged
openshift-merge-bot
merged 2 commits into
openshift:master
from
damdo:openshift-ipam-set-webhooks-failurepolicy-ignore
Dec 17, 2025
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
openshift/manifests/0000_30_cluster-api_04_cm.core-cluster-api.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
openshift/patches/failure-policy-ignore-ipam-webhooks.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # Set the failurePolicy to Ignore for the validating webhooks handling IPAM resources. | ||
| # | ||
| # During bootstrap, the bootstrap node's Kube API Server receives IPAM create requests but is unable | ||
| # to reach the webhooks in the Cluster API namespace. | ||
| # | ||
| # This is because the bootstrap node doesn't have a route to the pods as it doesn't have access to the pod networks. | ||
| # If failurePolicy is set to Fail, the KAS cannot reach the webhook endpoints and the request fails, preventing creation of IPAddress and IPAddressClaim resources. | ||
| # | ||
| # This causes a chicken-and-egg problem as it prevents IPAM provisioning | ||
| # for the workers which won't start without their IP addresses being allocated. | ||
| # | ||
| # Setting failurePolicy to Ignore allows the resources to be created even when the webhooks are | ||
| # unreachable during bootstrap, matching what Machine API also does. | ||
| # | ||
| # More context: https://redhat-internal.slack.com/archives/C0A2M43S199/p1765540108488539 | ||
| apiVersion: admissionregistration.k8s.io/v1 | ||
| kind: ValidatingWebhookConfiguration | ||
| metadata: | ||
| name: capi-validating-webhook-configuration | ||
| webhooks: | ||
| - name: validation.ipaddress.ipam.cluster.x-k8s.io | ||
| failurePolicy: Ignore | ||
| - name: validation.ipaddressclaim.ipam.cluster.x-k8s.io | ||
| failurePolicy: Ignore | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Technically
s/start/be created/, but not worth updating unless this needs a respin anyway.