From 27a59a24db3f140a360c11debcc9e49f9d62d981 Mon Sep 17 00:00:00 2001 From: Dave Walter Date: Thu, 9 Apr 2020 12:29:47 -0700 Subject: [PATCH] The docker image smoke test still needs the diego_docker flag to be set [#172251124](https://www.pivotaltracker.com/story/show/172251124) --- tests/smoke/smoke_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/smoke/smoke_test.go b/tests/smoke/smoke_test.go index 49e415f82..6a03c905a 100644 --- a/tests/smoke/smoke_test.go +++ b/tests/smoke/smoke_test.go @@ -79,6 +79,9 @@ var _ = Describe("Smoke Tests", func() { }) It("creates a routable app pod in Kubernetes from a docker image-based app", func() { + // Enable Docker Feature Flag + Eventually(cf.Cf("enable-feature-flag", "diego_docker")).Should(Exit(0)) + appName = generator.PrefixedRandomName(NamePrefix, "app") By("pushing an app and checking that the CF CLI command succeeds") @@ -114,6 +117,9 @@ var _ = Describe("Smoke Tests", func() { }) It("creates a routable app pod in Kubernetes from a source-based app", func() { + // Disable Docker Feature Flag + Eventually(cf.Cf("disable-feature-flag", "diego_docker")).Should(Exit(0)) + appName = generator.PrefixedRandomName(NamePrefix, "app") By("pushing an app and checking that the CF CLI command succeeds")