File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 44 "context"
55 "fmt"
66 "os"
7- "os/user"
87 "strconv"
98
109 . "github.com/onsi/ginkgo/v2"
@@ -62,11 +61,6 @@ func (k *EKSClusterProvider) Create(ctx context.Context) {
6261
6362 createClusterRes := & turtlesframework.RunCommandResult {}
6463 numWorkerNodes := strconv .Itoa (k .numWorkers )
65- tags := "team=highlander,purpose=e2e"
66- currentUser , _ := user .Current ()
67- if currentUser != nil {
68- tags += fmt .Sprintf (",owner=%s" , currentUser .Username )
69- }
7064 turtlesframework .RunCommand (ctx , turtlesframework.RunCommandInput {
7165 Command : "eksctl" ,
7266 Args : []string {
@@ -90,7 +84,7 @@ func (k *EKSClusterProvider) Create(ctx context.Context) {
9084 "--kubeconfig" ,
9185 tempFile .Name (),
9286 "--tags" ,
93- tags ,
87+ "team=highlander,purpose=e2e" ,
9488 "--node-type" ,
9589 "m5.xlarge" ,
9690 },
You can’t perform that action at this time.
0 commit comments