Skip to content

Commit

Permalink
refactor: update to use new community ami account
Browse files Browse the repository at this point in the history
Updates to the project to start using the new CNCF owned AWS account
for publishing AMIs. The code has had the old VMWare account removed
and the new account ID added. Additionally the docs have been updated
including clarifying that the public AMIs should only be used for
non-production usage.

Signed-off-by: Richard Case <[email protected]>
  • Loading branch information
richardcase committed Oct 4, 2024
1 parent 2fe1c84 commit d9ec853
Show file tree
Hide file tree
Showing 8 changed files with 800 additions and 136 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ cluster on AWS.

- Native Kubernetes manifests and API
- Manages the bootstrapping of VPCs, gateways, security groups and instances.
- Choice of Linux distribution among Amazon Linux 2, CentOS 7, Ubuntu(18.04, 20.04) and Flatcar
- Choice of Linux distribution among Amazon Linux 2, CentOS 7, Ubuntu and Flatcar
using [pre-baked AMIs][published_amis].
- Deploys Kubernetes control planes into private subnets with a separate
bastion server.
Expand Down
2 changes: 1 addition & 1 deletion cmd/clusterawsadm/ami/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (
)

func getSupportedOsList() []string {
return []string{"centos-7", "ubuntu-22.04", "ubuntu-18.04", "ubuntu-20.04", "amazon-2", "flatcar-stable"}
return []string{"centos-7", "ubuntu-24.04", "ubuntu-22.04", "ubuntu-18.04", "ubuntu-20.04", "amazon-2", "flatcar-stable"}
}

func getimageRegionList() []string {
Expand Down
1 change: 1 addition & 0 deletions docs/book/src/SUMMARY_SUFFIX.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- [Developing E2E tests](./development/e2e.md)
- [Coding Conventions](./development/conventions.md)
- [Try unreleased changes with Nightly Builds](./development/nightlies.md)
- [Publishing AMIs](./development/amis.md)
- [CRD Reference](./crd/index.md)
- [Reference](./topics/reference/reference.md)
- [Glossary](./topics/reference/glossary.md)
Expand Down
Loading

0 comments on commit d9ec853

Please sign in to comment.