Skip to content

Commit f604c3d

Browse files
committed
Add lifecycle integration tests for complex and externallb clusters
1 parent d79a4f3 commit f604c3d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

cmd/kops/lifecycle_integration_test.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,22 @@ func TestLifecycleSharedVPC(t *testing.T) {
106106
})
107107
}
108108

109+
// TestLifecycleComplex runs the test on a complex cluster
110+
func TestLifecycleComplex(t *testing.T) {
111+
runLifecycleTestAWS(&LifecycleTestOptions{
112+
t: t,
113+
SrcDir: "complex",
114+
})
115+
}
116+
117+
// TestLifecycleExternlLB runs the test on a cluster with external load balancers and target groups attached
118+
func TestLifecycleExternalLB(t *testing.T) {
119+
runLifecycleTestAWS(&LifecycleTestOptions{
120+
t: t,
121+
SrcDir: "externallb",
122+
})
123+
}
124+
109125
// TestLifecycleSharedSubnet runs the test on a shared subnet
110126
func TestLifecycleSharedSubnet(t *testing.T) {
111127
runLifecycleTestAWS(&LifecycleTestOptions{

0 commit comments

Comments
 (0)