From c46c5b06b338f0a49cc1cc8343d2fe6908651983 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Fri, 14 Jun 2024 14:54:57 -0700 Subject: [PATCH] Update test options default value and help. --- test/framework/options.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/framework/options.go b/test/framework/options.go index d99eda6c2d..82e2677928 100644 --- a/test/framework/options.go +++ b/test/framework/options.go @@ -56,8 +56,8 @@ func (options *Options) BindFlags() { flag.StringVar(&options.ClusterName, "cluster-name", "", `Kubernetes cluster name (required)`) flag.StringVar(&options.AWSRegion, "aws-region", "", `AWS Region for the kubernetes cluster`) flag.StringVar(&options.AWSVPCID, "aws-vpc-id", "", `AWS VPC ID for the kubernetes cluster`) - flag.StringVar(&options.NgNameLabelKey, "ng-name-label-key", "eks.amazonaws.com/nodegroup", "label key used to identify nodegroup name") - flag.StringVar(&options.NgNameLabelVal, "ng-name-label-val", "", "label value with the nodegroup name") + flag.StringVar(&options.NgNameLabelKey, "ng-name-label-key", "kubernetes.io/os", "label key used to identify node") + flag.StringVar(&options.NgNameLabelVal, "ng-name-label-val", "linux", "label value with the node") flag.StringVar(&options.EKSEndpoint, "eks-endpoint", "", "optional eks api server endpoint") flag.StringVar(&options.InitialAddon, "initial-addon-version", "", "Initial CNI addon version before upgrade applied") flag.StringVar(&options.TargetAddon, "target-addon-version", "", "Target CNI addon version after upgrade applied")