diff --git a/website/content/en/preview/concepts/nodeclasses.md b/website/content/en/preview/concepts/nodeclasses.md index f4c4553447ab..ebb5e5b30e36 100644 --- a/website/content/en/preview/concepts/nodeclasses.md +++ b/website/content/en/preview/concepts/nodeclasses.md @@ -456,7 +456,6 @@ amiSelectorTerms: ``` To select the latest EKS optimized AMIs, use the `eksOptimized` field in the selector term. To select an AMI by name, use the `name` field in the selector term. To select an AMI by id, use the `id` field in the selector term. To ensure that AMIs are owned by the expected owner, use the `owner` field - you can use a combination of account aliases (e.g. `self`, `amazon`, `your-aws-account-name`) and account IDs. - If owner is not set for `name`, it defaults to `self,amazon`, preventing Karpenter from inadvertently selecting an AMI that is owned by a different account. Tags don't require an owner as tags can only be discovered by the user who created them. {{% alert title="Tip" color="secondary" %}} @@ -486,7 +485,7 @@ The `eksOptimized` term is mutually exclusive. When an `eksOptimized` term is sp ```yaml amiSelectorTerms: - eksOptimzed: - family: AL2023 + family: AL2023 # Can not specify other terms with eksOptimzed - id: ami-123 ```