diff --git a/generator/test_case_generator.go b/generator/test_case_generator.go index 1e158a213..dc9a5d308 100644 --- a/generator/test_case_generator.go +++ b/generator/test_case_generator.go @@ -210,11 +210,6 @@ var testTypeToTestConfig = map[string][]testConfig{ terraformDir: "terraform/eks/daemon/windows/2022", targets: map[string]map[string]struct{}{"arc": {"amd64": {}}}, }, - { - testDir: "./test/metric_value_benchmark", - terraformDir: "terraform/eks/daemon/windows/2025", - targets: map[string]map[string]struct{}{"arc": {"amd64": {}}}, - }, { testDir: "./test/statsd", terraformDir: "terraform/eks/daemon/statsd", targets: map[string]map[string]struct{}{"arc": {"amd64": {}}}, @@ -229,7 +224,6 @@ var testTypeToTestConfig = map[string][]testConfig{ }, {testDir: "./test/fluent", terraformDir: "terraform/eks/daemon/fluent/bit"}, {testDir: "./test/fluent", terraformDir: "terraform/eks/daemon/fluent/windows/2022"}, - {testDir: "./test/fluent", terraformDir: "terraform/eks/daemon/fluent/windows/2025"}, { testDir: "./test/gpu", terraformDir: "terraform/eks/daemon/gpu", targets: map[string]map[string]struct{}{"arc": {"amd64": {}}}, diff --git a/terraform/eks/daemon/fluent/windows/2025/main.tf b/terraform/eks/daemon/fluent/windows/2025/main.tf deleted file mode 100644 index 85422989c..000000000 --- a/terraform/eks/daemon/fluent/windows/2025/main.tf +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. -// SPDX-License-Identifier: MIT - -module "windows" { - source = "../" - windows_ami_type = var.windows_ami_type - windows_os_version = var.windows_os_version - test_dir = var.test_dir - ami_type = var.ami_type - instance_type = var.instance_type - k8s_version = var.k8s_version -} \ No newline at end of file diff --git a/terraform/eks/daemon/fluent/windows/2025/variables.tf b/terraform/eks/daemon/fluent/windows/2025/variables.tf deleted file mode 100644 index e3f048843..000000000 --- a/terraform/eks/daemon/fluent/windows/2025/variables.tf +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. -// SPDX-License-Identifier: MIT - -variable "region" { - type = string - default = "us-west-2" -} - -variable "test_dir" { - type = string - default = "./test/metric_value_benchmark" -} - -variable "cwagent_image_repo" { - type = string - default = "public.ecr.aws/cloudwatch-agent/cloudwatch-agent" -} - -variable "cwagent_image_tag" { - type = string - default = "latest" -} - -variable "k8s_version" { - type = string - default = "1.24" -} - -variable "ami_type" { - type = string - default = "AL2_x86_64" -} - -variable "instance_type" { - type = string - default = "t3a.medium" -} - -variable "windows_ami_type" { - type = string - default = "WINDOWS_CORE_2025_x86_64" -} - -variable "windows_os_version" { - type = string - default = "2025" -} \ No newline at end of file