-
Notifications
You must be signed in to change notification settings - Fork 130
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
fix(karpenter): Pin to previous working chart version #366
Conversation
If already installed the upgrade, you may get an issue. ``` failed to get API group resources: unable to retrieve the complete list of server APIs: karpenter.sh/v1beta1: the server could not find the requested resource ``` To fix uninstall karpenter and reapply terraform ```bash helm uninstall karpenter -n karpenter ``` Fixes aws-ia#365
@@ -3015,7 +3015,7 @@ module "karpenter" { | |||
namespace = local.karpenter_namespace | |||
create_namespace = try(var.karpenter.create_namespace, true) | |||
chart = try(var.karpenter.chart, "karpenter") | |||
chart_version = try(var.karpenter.chart_version, "0.35.0") | |||
chart_version = try(var.karpenter.chart_version, "v0.32.1") |
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.
why the downgrade?
v0.35.1 is out
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.
I think this issue still exists and needs fixing aws/karpenter-provider-aws#5415
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.
A workaround could be pinning the image tag to the correct one instead perhaps but I haven't tested that
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.
thank you, but I am unable to reproduce the error - the default version is just that, a default. we encourage users to specify the version in order to have better control over which version is used and when that changes. for now, I would say set the v0.32.1 version in your configuration if that what puts things back into a healthy state. Closing this out for now though
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.
Interesting you couldn't reproduce with the default values. Did you test this with an upgrade or in a fresh install?
I'm happy for it to be closed if no one else is seeing the issue, perhaps it's related to our deployment but we're installing karpenter with mostly default values including the image and helm chart
What does this PR do?
🛑 Please open an issue first to discuss any significant work and flesh out details/direction - we would hate for your time to be wasted.
Consult the CONTRIBUTING guide for submitting pull-requests.
If already installed the upgrade, you may get an issue.
To fix uninstall karpenter and reapply terraform
Motivation
Fixes #365
More
pre-commit run -a
with this PRFor Moderators
Additional Notes