Skip to content

Commit

Permalink
set skip-ssl-validation to true for sample app
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Vidrio <[email protected]>
  • Loading branch information
weymanf and vitreuz committed Nov 7, 2019
1 parent 400e3b3 commit 8c6115a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions route_services/route_services.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
Expand Down

0 comments on commit 8c6115a

Please sign in to comment.