-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
feat: Update Karpenter pattern to use v0.32.1
with v1beta1
APIs
#1819
Conversation
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.
This have just 2 manifests, but in other examples where we have more, wouldn't be better to have a manifests
directory?
I'm curious to know more - how and what would this directory improve? |
Just can keep the
|
converting to draft until aws-ia/terraform-aws-eks-blueprints-addons#298 is released |
This PR has been automatically marked as stale because it has been open 30 days |
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'm creating a cluster to see if it's all working
data "aws_ecrpublic_authorization_token" "token" { | ||
provider = aws.virginia | ||
} | ||
|
||
data "aws_availability_zones" "available" {} | ||
|
||
locals { | ||
name = basename(path.cwd) | ||
name = "ex-${basename(path.cwd)}" |
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 adding ex- ?
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.
just to be certain the resources created are distinguishable and avoid name conflicts - ex-karpenter
vs karpenter
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.
🚢
patterns/karpenter/README.md
Outdated
kubectl apply -f karpenter.yaml | ||
``` | ||
|
||
3. With the Karpenter resources are in place, when pods are pending in the scheduler's queue, Karpenter will provision the necessary EC2 resources to satisfy those requests. You can demonstrate this with the example deployment provided. First deploy the example deployment which has the initial number replicas set to 0: |
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.
With the Karpenter resources are in place -> need rephrase
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.
thanks - updated in 4506824
Description
v0.32.1
withv1beta1
APIskubectl
provider since it is no longer maintainedMotivation and Context
How was this change tested?
pre-commit run -a
with this PRAdditional Notes