Skip to content

Commit

Permalink
Add lifecycle integration tests for complex and externallb clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
rifelpet committed Oct 30, 2020
1 parent 1bba4fb commit 45181c8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions cmd/kops/lifecycle_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,22 @@ func TestLifecycleSharedVPC(t *testing.T) {
})
}

// TestLifecycleComplex runs the test on a complex cluster
func TestLifecycleComplex(t *testing.T) {
runLifecycleTestAWS(&LifecycleTestOptions{
t: t,
SrcDir: "complex",
})
}

// TestLifecycleExternlLB runs the test on a cluster with external load balancers and target groups attached
func TestLifecycleExternalLB(t *testing.T) {
runLifecycleTestAWS(&LifecycleTestOptions{
t: t,
SrcDir: "externallb",
})
}

// TestLifecycleSharedSubnet runs the test on a shared subnet
func TestLifecycleSharedSubnet(t *testing.T) {
runLifecycleTestAWS(&LifecycleTestOptions{
Expand Down

0 comments on commit 45181c8

Please sign in to comment.