@@ -66,6 +66,7 @@ func TestCRUD(t *testing.T) {
6666}
6767
6868const (
69+ deployNg = "ng-deploy"
6970 deleteNg = "ng-delete"
7071 taintsNg1 = "ng-taints-1"
7172 taintsNg2 = "ng-taints-2"
@@ -131,6 +132,17 @@ var _ = SynchronizedBeforeSuite(func() []byte {
131132 },
132133 }
133134 cfg .ManagedNodeGroups = []* api.ManagedNodeGroup {
135+ {
136+ NodeGroupBase : & api.NodeGroupBase {
137+ Name : deployNg ,
138+ ScalingConfig : & api.ScalingConfig {
139+ DesiredCapacity : aws .Int (5 ),
140+ },
141+ Labels : map [string ]string {
142+ "used-for" : "test-pods" ,
143+ },
144+ },
145+ },
134146 {
135147 NodeGroupBase : & api.NodeGroupBase {
136148 Name : drainMng ,
@@ -214,7 +226,7 @@ var _ = Describe("(Integration) Create, Get, Scale & Delete", func() {
214226 Expect (session .ExitCode ()).To (BeZero ())
215227 var stacks []* cfntypes.Stack
216228 Expect (yaml .Unmarshal (session .Out .Contents (), & stacks )).To (Succeed ())
217- Expect (stacks ).To (HaveLen (6 ))
229+ Expect (stacks ).To (HaveLen (7 ))
218230
219231 var (
220232 names , descriptions []string
@@ -227,6 +239,7 @@ var _ = Describe("(Integration) Create, Get, Scale & Delete", func() {
227239
228240 Expect (names ).To (ContainElements (
229241 ContainSubstring (params .ClusterName + "-cluster" ),
242+ ContainSubstring (ngPrefix + deployNg ),
230243 ContainSubstring (ngPrefix + deleteNg ),
231244 ContainSubstring (ngPrefix + scaleSingleNg ),
232245 ContainSubstring (ngPrefix + scaleMultipleNg ),
@@ -1196,6 +1209,7 @@ var _ = Describe("(Integration) Create, Get, Scale & Delete", func() {
11961209 "-o" , "json" ,
11971210 "--cluster" , params .ClusterName ,
11981211 )).To (RunSuccessfullyWithOutputString (BeNodeGroupsWithNamesWhich (
1212+ ContainElement (deployNg ),
11991213 ContainElement (taintsNg1 ),
12001214 ContainElement (taintsNg2 ),
12011215 ContainElement (scaleSingleNg ),
0 commit comments