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

Update AMIs #662

Merged
merged 1 commit into from
Mar 25, 2019
Merged
Show file tree
Hide file tree
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
40 changes: 20 additions & 20 deletions pkg/ami/static_resolver_ami.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ var StaticImages = map[string]map[string]map[int]map[string]string{
"1.10": {
"AmazonLinux2": {
ImageClassGPU: {
"ap-northeast-1": "ami-061f5b653b1a98557",
"ap-northeast-2": "ami-0a8159b97b9a7e078",
"ap-northeast-1": "ami-0bb5892624403ca87",
"ap-northeast-2": "ami-02ef4162c5ee1e443",
"ap-south-1": "",
"ap-southeast-1": "ami-02aa3e8ad27163456",
"ap-southeast-2": "ami-0679fa5d74309eb79",
"eu-central-1": "ami-0c1746c6d5d61b4d3",
"eu-north-1": "ami-63aa231d",
"eu-west-1": "ami-08d23ed2de9320c90",
"ap-southeast-1": "ami-09496affecfe51b86",
"ap-southeast-2": "ami-0dae5c0d203e32e9f",
"eu-central-1": "ami-0290406a183d6587d",
"eu-north-1": "ami-d3169fad",
"eu-west-1": "ami-086252e9df9c3a21e",
"eu-west-2": "",
"eu-west-3": "",
"us-east-1": "ami-00cce60e4c241de4c",
"us-east-2": "ami-0bbfeb020c5ec10ee",
"us-west-2": "ami-02e0b615d7749e016",
"us-east-1": "ami-0c67dfb2298cf554a",
"us-east-2": "ami-0fb4bb0f84f4a0049",
"us-west-2": "ami-003a551d4d2e5c75d",
},
ImageClassGeneral: {
"ap-northeast-1": "ami-0e831f9f650f2f8ab",
Expand Down Expand Up @@ -56,19 +56,19 @@ var StaticImages = map[string]map[string]map[int]map[string]string{
"1.11": {
"AmazonLinux2": {
ImageClassGPU: {
"ap-northeast-1": "ami-0880d3b662781d6d6",
"ap-northeast-2": "ami-0c3db49d90afa0f1e",
"ap-northeast-1": "ami-0ed8c50e848425cb3",
"ap-northeast-2": "ami-042e93c5dc384f6b8",
"ap-south-1": "",
"ap-southeast-1": "ami-0c903ead334faa6a3",
"ap-southeast-2": "ami-02d7e0f064bd7d8e0",
"eu-central-1": "ami-0939712219b80b525",
"eu-north-1": "ami-18bf3666",
"eu-west-1": "ami-014969e8d07b2fc9f",
"ap-southeast-1": "ami-0c1b23fe04eafb5a0",
"ap-southeast-2": "ami-0fe2e260f573c02a8",
"eu-central-1": "ami-0b82a79b011122da0",
"eu-north-1": "ami-d6159ca8",
"eu-west-1": "ami-0fab91784768ff07a",
"eu-west-2": "",
"eu-west-3": "",
"us-east-1": "ami-0558da965e2fc68b0",
"us-east-2": "ami-0c3afad2ea917168e",
"us-west-2": "ami-06045aa686f46dd58",
"us-east-1": "ami-000412c12949aa8dd",
"us-east-2": "ami-018bc34828bcbf65e",
"us-west-2": "ami-0805ff53a28e7b904",
},
ImageClassGeneral: {
"ap-northeast-1": "ami-07fdc9272ce5b0ce5",
Expand Down
6 changes: 3 additions & 3 deletions pkg/ami/static_resolver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,23 +69,23 @@ var _ = Describe("AMI Static Resolution", func() {
Version: "1.10",
InstanceType: "p2.xlarge",
ImageFamily: "AmazonLinux2",
ExpectedAMI: "ami-02e0b615d7749e016",
ExpectedAMI: "ami-003a551d4d2e5c75d",
ExpectError: false,
}),
Entry("with gpu (p3) instance and us-east-1", ResolveCase{
Region: "us-east-1",
Version: "1.10",
InstanceType: "p3.2xlarge",
ImageFamily: "AmazonLinux2",
ExpectedAMI: "ami-00cce60e4c241de4c",
ExpectedAMI: "ami-0c67dfb2298cf554a",
ExpectError: false,
}),
Entry("with gpu (p2) instance and eu-west-1", ResolveCase{
Region: "eu-west-1",
Version: "1.10",
InstanceType: "p2.xlarge",
ImageFamily: "AmazonLinux2",
ExpectedAMI: "ami-08d23ed2de9320c90",
ExpectedAMI: "ami-086252e9df9c3a21e",
ExpectError: false,
}),
Entry("with gpu (p3) instance and non-eks enabled region", ResolveCase{
Expand Down