Skip to content

Commit

Permalink
feat: add configurable version for ecommerce_worker (#1710)
Browse files Browse the repository at this point in the history
  • Loading branch information
christopappas authored Dec 6, 2023
1 parent 9c29ebe commit ce47cb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion devops/jobs/CreateSandbox.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ class CreateSandbox {


def ecommerceVersion = extraVars.get("ECOMMERCE_VERSION", "master")
def ecommerceWorkerVersion = extraVars.get("ECOMMERCE_WORKER_VERSION", "master")
parameters {
booleanParam("recreate",true,"Checking this option will terminate an existing instance if it already exists and start over from scratch")
stringParam("dns_name","",
Expand Down Expand Up @@ -155,7 +156,7 @@ class CreateSandbox {
stringParam("xserver_version","master","")

booleanParam("ecommerce_worker",true,"")
stringParam("ecommerce_worker_version","master","")
stringParam("ecommerce_worker_version",ecommerceWorkerVersion,"")
booleanParam("ecommerce_worker_decrypt_and_copy_config_enabled",true,"Checking this option will decrypt and copy ecommerce_worker config file from configuration internal repo.")

booleanParam("analyticsapi",false,"")
Expand Down

0 comments on commit ce47cb9

Please sign in to comment.