fix(deps): bump civic-cloud to v1.9.1 (cert-manager gate name)#148
Open
themightychris wants to merge 1 commit into
Open
fix(deps): bump civic-cloud to v1.9.1 (cert-manager gate name)#148themightychris wants to merge 1 commit into
themightychris wants to merge 1 commit into
Conversation
Picks up the cert-manager ListenerSets feature gate name fix from upstream. v1.9.0 deployed with the wrong gate name (`ListenerSet` singular) and cert-manager controller crash-looped on startup. v1.9.1 has the correct name (`ListenerSets` plural). See JarvusInnovations/cluster-template#61, civic-cloud/cluster-template#20. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
Picks up the cert-manager feature-gate-name fix from civic-cloud v1.9.1 (which pulls cluster-template v1.5.1).
v1.9.0 set the gate as
ListenerSet(singular, per the cert-manager 1.20 release notes wording), but the actual gate name in cert-manager's controller code isListenerSets(plural). The controller pod has been crash-looping in CrashLoopBackOff since the v1.9.0 deploy:cert-manager's other components (webhook, cainjector) are unaffected. Existing Certificate resources don't need the controller until renewal time, so the cluster has been functional but unable to renew.
Diff
One line in the rendered tree:
Everything else from the v1.9.0 deploy stays.
Test plan
unrecognized feature gateerrors in controller logs after restart🤖 Generated with Claude Code