-
Notifications
You must be signed in to change notification settings - Fork 103
Fixed Gateway API manifest #1016
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
Conversation
Signed-off-by: Zdenek Deu Janda <zdenek.janda@cloudevelops.com>
WalkthroughA version constraint was added to the HelmRelease manifest for the gateway-api-crds chart, specifying that any chart version greater than or equal to 0.0.0-0 should be used. No other changes were made to logic, error handling, or control flow. Changes
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
packages/apps/kubernetes/templates/helmreleases/gateway-api-crds.yaml (1)
20-20
: Add version constraint to resolve installation failure
The new lineversion: '>= 0.0.0-0'ensures Flux will match any published chart version, fixing the “version '*' not found” error when
gatewayAPI
is enabled.Consider tightening this to a known stable range (for example,
>=1.0.0 <2.0.0
) to avoid unintended upgrades.
Please verify that your HelmRepository actually contains versions satisfying this constraint by checking available chart versions in thecozystack-system
repo.
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
In current version of Cozystack, flux's HelmRelease will refuse to install cozy-gateway-api-crds when gatewayAPI enabled, complaining version '*'not found and breaking install of entire kubernetes app. This patch adds working version match.
Summary by CodeRabbit