diff --git a/test-bdd/features/01_create.feature b/test-bdd/features/01_create.feature index 34ab3214..906a6cf7 100644 --- a/test-bdd/features/01_create.feature +++ b/test-bdd/features/01_create.feature @@ -23,7 +23,6 @@ Feature: CRUD Create Given an EKS cluster When I create a resource instance-group.yaml Then the resource should be created - And the resource should converge to selector .status.lifecycle=spot And the resource should converge to selector .status.currentState=ready And the resource condition NodesReady should be true And 2 nodes should be ready @@ -32,7 +31,6 @@ Feature: CRUD Create Given an EKS cluster When I create a resource instance-group-crd.yaml Then the resource should be created - And the resource should converge to selector .status.lifecycle=spot And the resource should converge to selector .status.currentState=ready And the resource condition NodesReady should be true And 2 nodes should be ready diff --git a/test-bdd/templates/instance-group-crd.yaml b/test-bdd/templates/instance-group-crd.yaml index fc5875a7..2211cdb2 100644 --- a/test-bdd/templates/instance-group-crd.yaml +++ b/test-bdd/templates/instance-group-crd.yaml @@ -48,8 +48,5 @@ spec: securityGroups: {{range $element := .NodeSecurityGroups}} - {{$element}} {{ end }} - tags: - - key: k8s-minion-manager - value: use-spot metricsCollection: - all \ No newline at end of file diff --git a/test-bdd/templates/instance-group.yaml b/test-bdd/templates/instance-group.yaml index 5a5b488d..f9b0b4d1 100644 --- a/test-bdd/templates/instance-group.yaml +++ b/test-bdd/templates/instance-group.yaml @@ -38,8 +38,5 @@ spec: securityGroups: {{range $element := .NodeSecurityGroups}} - {{$element}} {{ end }} - tags: - - key: k8s-minion-manager - value: use-spot metricsCollection: - all \ No newline at end of file