Skip to content
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

Add 1.26 #1246

Merged
merged 1 commit into from
Apr 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ T_YELLOW := \e[0;33m
T_RESET := \e[0m

.PHONY: latest
latest: 1.25 ## Build EKS Optimized AL2 AMI with the latest supported version of Kubernetes
latest: 1.26 ## Build EKS Optimized AL2 AMI with the latest supported version of Kubernetes

# ensure that these flags are equivalent to the rules in the .editorconfig
SHFMT_FLAGS := --list \
Expand Down Expand Up @@ -104,6 +104,10 @@ k8s: validate ## Build default K8s version of EKS Optimized AL2 AMI
1.25: ## Build EKS Optimized AL2 AMI - K8s 1.25
$(MAKE) k8s kubernetes_version=1.25.7 kubernetes_build_date=2023-03-17 pull_cni_from_github=true

.PHONY: 1.26
1.26: ## Build EKS Optimized AL2 AMI - K8s 1.26
$(MAKE) k8s kubernetes_version=1.26.2 kubernetes_build_date=2023-03-17 pull_cni_from_github=true

.PHONY: clean
clean:
rm *-manifest.json
Expand Down