chore: upgrade dependency apisix-ingress-controller to 1.3.0 - #998
Merged
Conversation
nic-6443
approved these changes
Aug 18, 2026
shreemaan-abhishek
approved these changes
Aug 19, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Picks up apisix-ingress-controller 1.3.0, which carries 2.2.0.
apisix-ingress-controller1.2.0 -> 1.3.0, chart version 2.16.0 -> 2.16.1Chart.lockand the vendored tarball regenerated withhelm dependency updatehelm lintpasses andhelm templaterendersapache/apisix-ingress-controller:2.2.0alongsideghcr.io/api7/adc:0.27.1. No values changed, so the generated README is untouched.Upgrading needs the CRDs applied first
Worth knowing for anyone moving an existing install to this version, because it fails silently otherwise. Helm applies
crds/on install and skips it on upgrade, so a plainhelm upgradeleaves the Gateway API CRDs at v1.3.0 while 2.2.0 reads the L4 routes throughgateway.networking.k8s.io/v1only. Verified on a clean kind cluster, upgrading from chart 1.2.2:TCPRoute, UDPRoute and TLSRoute stop being reconciled, and
l4routepoliciesis never created either, soL4RoutePolicycannot be used. Applying the CRDs first fixes both:After that the 2.2.0 controller rolls out, a
v1TCPRoute and anL4RoutePolicyboth apply cleanly, and the webhooks answer on thev1paths.--force-conflictsis the part that is required: helm owns those CRD fields as managerhelm, and server-side apply refuses to take fields another manager owns when the values differ.--server-sideitself is not strictly required for this bundle — the largest CRD serialises to 242339 bytes against the 262144 byte annotation limit — but the margin is 7%, so it is the safer way to apply them.The chart's
## Upgrading Chartsection says nothing about this today. Happy to send that as a follow-up to the ingress-controller chart.