-
Notifications
You must be signed in to change notification settings - Fork 77
V1 backport #775
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
Open
muddyfish
wants to merge
14
commits into
v1
Choose a base branch
from
v1-backport
base: v1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
V1 backport #775
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
34b45a0
Update workflow files
muddyfish 11836b5
Backport drop of k8s 1.29
muddyfish a98276e
Bring in some more patches from v2
dannycjones d0e79cf
Add outcome to e2e-test-trusted
muddyfish d66d166
More getting in sync with main
muddyfish 0a8b3c8
Update Go to 1.26.2
muddyfish 91accee
Update dependencies
muddyfish ef06f19
Switch k8s to 1.33.6
muddyfish 71980f1
Update go.mod
muddyfish a0144ad
Fix go.mod in tests/e2e-kubernetes
muddyfish 0cc99d3
Migrate e2evolume calls to e2epod for K8s v1.33 compatibility
tadiwa-aizen 98082f8
chore: run go fix, and add concurrency queue max
26cf3a2
fix(ci): use verify-helm-images.sh without headroom pod image check
490a7a3
fix: run go mod tidy
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,49 +1,50 @@ | ||
| # Changes here may need to be backported to the latest 2.x and 1.x release branches. | ||
| # Backport if AWS is removing support for an EKS version, or if we're actively choosing to support a new k8s version on | ||
| # an old release. | ||
| matrix: | ||
| cluster-type: ["eksctl"] | ||
| arch: ["x86", "arm"] | ||
| family: ["AmazonLinux2", "AmazonLinux2023", "Bottlerocket"] | ||
| family: | ||
| [ | ||
| "AmazonLinux2", | ||
| "AmazonLinux2023", | ||
| "Bottlerocket", | ||
| "Ubuntu2204", | ||
| "Ubuntu2404", | ||
| ] | ||
| kubernetes-version: | ||
| ["1.28.13", "1.29.8", "1.30.4", "1.31.0", "1.32.1", "1.33.2"] | ||
| ["1.30.4", "1.31.0", "1.32.1", "1.33.2", "1.34.1", "1.35.0"] | ||
| include: | ||
| # Ubuntu2004 supported for EKS <= 1.29 and Ubuntu2204 supported for EKS >= 1.29. | ||
| # See https://eksctl.io/usage/custom-ami-support/?h=ubuntu#setting-the-node-ami-family. | ||
| # Enable enforcing mode for SELinux in AL2023, it's easier to list it in "include" | ||
| # field rather than trying to exclude all other variants. | ||
| - family: "AmazonLinux2023" | ||
| selinux-mode: "enforcing" | ||
| exclude: | ||
| # AL2 is not supported by Kubernetes 1.33. | ||
| - cluster-type: "eksctl" | ||
| arch: "x86" | ||
| family: "Ubuntu2004" | ||
| kubernetes-version: "1.28.13" | ||
| family: "AmazonLinux2" | ||
| kubernetes-version: "1.33.2" | ||
| # AL2 is not supported by Kubernetes 1.34. | ||
| - cluster-type: "eksctl" | ||
| arch: "arm" | ||
| family: "Ubuntu2004" | ||
| kubernetes-version: "1.29.8" | ||
| family: "AmazonLinux2" | ||
| kubernetes-version: "1.34.1" | ||
| # AL2 is not supported by Kubernetes 1.35. | ||
| - cluster-type: "eksctl" | ||
| arch: "x86" | ||
| family: "Ubuntu2204" | ||
| kubernetes-version: "1.30.4" | ||
| family: "AmazonLinux2" | ||
| kubernetes-version: "1.35.0" | ||
| # Ubuntu2204 is only supported on EKS >= 1.29 && EKS < 1.33. | ||
| # See https://eksctl.io/usage/custom-ami-support/?h=ubuntu#setting-the-node-ami-family. | ||
| - cluster-type: "eksctl" | ||
| arch: "arm" | ||
| family: "Ubuntu2204" | ||
| kubernetes-version: "1.31.0" | ||
| kubernetes-version: "1.33.2" | ||
| - cluster-type: "eksctl" | ||
| arch: "arm" | ||
| family: "Ubuntu2204" | ||
| kubernetes-version: "1.32.1" | ||
| # TODO: Enable this once EKS 1.33 Ubuntu AMI is available. | ||
| # - cluster-type: "eksctl" | ||
| # arch: "arm" | ||
| # family: "Ubuntu2204" | ||
| # kubernetes-version: "1.33.2" | ||
| # Since we only enable enforcing mode for SELinux in AL2023, it's easier to list it in "include" | ||
| # field rather than trying to exclude all other variants. | ||
| - cluster-type: "eksctl" | ||
| arch: "x86" | ||
| family: "AmazonLinux2023" | ||
| kubernetes-version: "1.32.1" | ||
| selinux-mode: "enforcing" | ||
| exclude: | ||
| kubernetes-version: "1.34.1" | ||
| - cluster-type: "eksctl" | ||
| arch: "arm" | ||
| family: "Bottlerocket" | ||
| # AL2 is not supported by Kubernetes 1.33. | ||
| family: "Ubuntu2204" | ||
| kubernetes-version: "1.35.0" | ||
| # Ubuntu2404 is only supported on EKS >= 1.31. | ||
| # See https://eksctl.io/usage/custom-ami-support/?h=ubuntu#setting-the-node-ami-family. | ||
| - cluster-type: "eksctl" | ||
| family: "AmazonLinux2" | ||
| kubernetes-version: "1.33.2" | ||
| family: "Ubuntu2404" | ||
| kubernetes-version: "1.30.4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.