From 8c6115a7d90b4134417bf313e73d1337a60378f7 Mon Sep 17 00:00:00 2001 From: Weyman Fung Date: Thu, 7 Nov 2019 14:21:43 -0800 Subject: [PATCH] set skip-ssl-validation to true for sample app Co-authored-by: Sebastian Vidrio --- route_services/route_services.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/route_services/route_services.go b/route_services/route_services.go index 428d919bc..a390e4e45 100644 --- a/route_services/route_services.go +++ b/route_services/route_services.go @@ -55,12 +55,16 @@ var _ = RouteServicesDescribe("Route Services", func() { Expect(cf.Cf("push", routeServiceName, + "--no-start", "-b", Config.GetGoBuildpackName(), "-m", DEFAULT_MEMORY_LIMIT, "-p", loggingRouteServiceAsset, "-f", filepath.Join(loggingRouteServiceAsset, "manifest.yml"), "-d", Config.GetAppsDomain()).Wait(Config.CfPushTimeoutDuration())).To(Exit(0)) + Expect(cf.Cf("set-env", routeServiceName, "SKIP_SSL_VALIDATION", "true").Wait()).To(Exit(0)) + Expect(cf.Cf("start", routeServiceName).Wait(CF_JAVA_TIMEOUT)).To(Exit(0)) + configureBroker(brokerAppName, routeServiceName) bindRouteToService(appName, serviceInstanceName) })