From ab3be3d4f76012e5ca97863d7edaa55038a6b3fc Mon Sep 17 00:00:00 2001 From: Michael Shen Date: Mon, 5 Jun 2023 21:45:26 -0400 Subject: [PATCH] osd-network-verifier v0.3.1 This release contains bugfixes to the --platform hostedcluster configuration which was incorrectly checking servicequotas.${AWS_REGION}.amazonaws.com and tagging.us-east-1.amazonaws.com:80 Signed-off-by: Michael Shen --- pkg/verifier/aws/aws_verifier.go | 46 ++++++++++++++++---------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/pkg/verifier/aws/aws_verifier.go b/pkg/verifier/aws/aws_verifier.go index 15a2e628..2ae9fb17 100644 --- a/pkg/verifier/aws/aws_verifier.go +++ b/pkg/verifier/aws/aws_verifier.go @@ -21,29 +21,29 @@ import ( var ( defaultAmi = map[string]string{ - "af-south-1": "ami-058366609e22d236c", - "ap-east-1": "ami-05c504972a83bb707", - "ap-northeast-1": "ami-0ae96a58772eb3fee", - "ap-northeast-2": "ami-04af82fd7ade74d0c", - "ap-northeast-3": "ami-0c353b4b3fd722315", - "ap-south-1": "ami-09ac10928e4613eb8", - "ap-southeast-1": "ami-0b934e5759760c619", - "ap-southeast-2": "ami-02ffafb015ea5d2b6", - "ap-southeast-3": "ami-0432b0929298da020", - "ca-central-1": "ami-068f378dce5c267c6", - "eu-central-1": "ami-01bce990fc15677ae", - "eu-north-1": "ami-0fc7550bd719ea892", - "eu-south-1": "ami-09f55a94633b5ee0f", - "eu-west-1": "ami-06e3bcae2dd1094b3", - "eu-west-2": "ami-0a43c5ee82fcafc7e", - "eu-west-3": "ami-0338ef435387e56f5", - "me-central-1": "ami-0e52000083d86631f", - "me-south-1": "ami-04b01514ae0d9cb02", - "sa-east-1": "ami-09eecff20e296880d", - "us-east-1": "ami-0ac8caddb54876856", - "us-east-2": "ami-06c3c5a8d32a87309", - "us-west-1": "ami-0ce875206d1b7f395", - "us-west-2": "ami-092d4784c0ed8dd7b", + "af-south-1": "ami-014b47f6fe8b4c0c3", + "ap-east-1": "ami-0d12284e21cac6d77", + "ap-northeast-1": "ami-0714a0f5da8f7233d", + "ap-northeast-2": "ami-0da715520e52a5148", + "ap-northeast-3": "ami-04c266b7da153547d", + "ap-south-1": "ami-06ad0daa185ab5cb0", + "ap-southeast-1": "ami-0268d9c47dd43e6bd", + "ap-southeast-2": "ami-0632c256799534ad9", + "ap-southeast-3": "ami-0022511fe20fd00d2", + "ca-central-1": "ami-0c62eb6b401f2a03d", + "eu-central-1": "ami-008f7c43b93a13564", + "eu-north-1": "ami-03918d4fece95c68a", + "eu-south-1": "ami-06ed31a8bfddbf7a0", + "eu-west-1": "ami-07e772aed01717028", + "eu-west-2": "ami-005ba6607acac7b3e", + "eu-west-3": "ami-0ce34bc8ee9c5d0a5", + "me-central-1": "ami-046dc736152c153d8", + "me-south-1": "ami-0470552c96f51f420", + "sa-east-1": "ami-0a29304b37ebef4d7", + "us-east-1": "ami-0fb4e0049a55917e6", + "us-east-2": "ami-0241f2d4397f1cade", + "us-west-1": "ami-0200beb9cbb054c75", + "us-west-2": "ami-0dc8384bb52397ee1", } )