From ccb65826b5995ac05939ce25de09ae24269bb033 Mon Sep 17 00:00:00 2001 From: Tristan Radisson Date: Thu, 6 Feb 2020 13:12:21 +0100 Subject: [PATCH] [KOGITO-998] Setup all run-smoke params into Makefile (#163) --- bddframework/smoke/framework/env.go | 2 ++ bddframework/smoke/framework/kogitoapp.go | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/bddframework/smoke/framework/env.go b/bddframework/smoke/framework/env.go index c7dd9cabd8b..fecfaa3528f 100644 --- a/bddframework/smoke/framework/env.go +++ b/bddframework/smoke/framework/env.go @@ -22,6 +22,8 @@ import ( ) const ( + defaultKogitoExamplesURI = "https://github.com/kiegroup/kogito-examples" + defaultOperatorImageName = "quay.io/kiegroup/kogito-cloud-operator" defaultOperatorDeployURI = "../../deploy/" defaultCliPath = "../../build/_output/bin/kogito" diff --git a/bddframework/smoke/framework/kogitoapp.go b/bddframework/smoke/framework/kogitoapp.go index 35e3301f5ed..1e1c0e7240e 100644 --- a/bddframework/smoke/framework/kogitoapp.go +++ b/bddframework/smoke/framework/kogitoapp.go @@ -25,10 +25,6 @@ import ( "github.com/kiegroup/kogito-cloud-operator/pkg/client/kubernetes" ) -const ( - defaultKogitoExamplesURI = "https://github.com/kiegroup/kogito-examples" -) - // DeployQuarkusExample deploy a Quarkus example func DeployQuarkusExample(namespace, appName, contextDir string, native, persistence, events bool) error { GetLogger(namespace).Infof("Deploy quarkus example %s with name %s, native %v and persistence %v", contextDir, appName, native, persistence)