File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
api/external/sigs.k8s.io/cluster-api-provider-aws/v2/api/v1beta2 Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ type AMIReference struct {
5454 ID * string `json:"id,omitempty"`
5555
5656 // EKSOptimizedLookupType If specified, will look up an EKS Optimized image in SSM Parameter store
57- // +kubebuilder:validation:Enum:=AmazonLinux;AmazonLinuxGPU
57+ // +kubebuilder:validation:Enum:=AmazonLinux;AmazonLinuxGPU;AmazonLinux2023;AmazonLinux2023GPU
5858 // +optional
5959 EKSOptimizedLookupType * EKSAMILookupType `json:"eksLookupType,omitempty"`
6060}
@@ -463,6 +463,10 @@ const (
463463 AmazonLinux EKSAMILookupType = "AmazonLinux"
464464 // AmazonLinuxGPU is the AmazonLinux GPU AMI type.
465465 AmazonLinuxGPU EKSAMILookupType = "AmazonLinuxGPU"
466+ // AmazonLinux2023 is the AmazonLinux 2023 AMI type.
467+ AmazonLinux2023 EKSAMILookupType = "AmazonLinux2023"
468+ // AmazonLinux2023GPU is the AmazonLinux 2023 GPU AMI type.
469+ AmazonLinux2023GPU EKSAMILookupType = "AmazonLinux2023GPU"
466470)
467471
468472// PrivateDNSName is the options for the instance hostname.
You can’t perform that action at this time.
0 commit comments