From 7e097eec7fd5f498b9b1d1ae2bce4ac66bfe8329 Mon Sep 17 00:00:00 2001 From: Ilya Dmitrichenko Date: Mon, 15 Oct 2018 13:11:07 +0100 Subject: [PATCH] Make good use of tags in integration test --- tests/integration/create_get_delete/integration_test.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/integration/create_get_delete/integration_test.go b/tests/integration/create_get_delete/integration_test.go index 425dbb3fb5..d65455f42d 100644 --- a/tests/integration/create_get_delete/integration_test.go +++ b/tests/integration/create_get_delete/integration_test.go @@ -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)