Skip to content

Commit

Permalink
Make good use of tags in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
errordeveloper committed Oct 15, 2018
1 parent 74f6671 commit 7e097ee
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/integration/create_get_delete/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,14 @@ var _ = Describe("Create (Integration)", func() {
clusterName = utils.ClusterName("", "")
}

args := []string{"create", "cluster", "--name", clusterName, "--node-type", "t2.medium", "--nodes", "1", "--region", region, "--kubeconfig", kubeconfigPath}
args := []string{"create", "cluster",
"--name", clusterName,
"--tags", "Purpose=ekscltIntegrationTest"
"--node-type", "t2.medium",
"--nodes", "1",
"--region", region,
"--kubeconfig", kubeconfigPath,
}

command := exec.Command(eksctlPath, args...)
session, err = gexec.Start(command, GinkgoWriter, GinkgoWriter)
Expand Down

0 comments on commit 7e097ee

Please sign in to comment.