Jason Noxon
05/02/2023, 12:21 PMDeployment.build_from_flow()
deployment method? I tried adding a dictionary called parameters=
to the call, but no love.Vadym Dytyniak
05/02/2023, 12:26 PMdeployment = Deployment.build_from_flow(
flow=flow,
schedule=schedule,
parameters=parameters,
name=name,
storage=storage,
work_queue_name=work_queue.value,
path=path,
infrastructure=infrastructure,
tags=tags,
skip_upload=True,
)
Jason Noxon
05/02/2023, 12:27 PMVadym Dytyniak
05/02/2023, 12:29 PMJason Noxon
05/02/2023, 12:29 PMVadym Dytyniak
05/02/2023, 12:30 PMdeployment = Deployment.build_from_flow(
flow=flow,
schedule=schedule,
parameters=parameters,
name=name,
storage=storage,
work_queue_name=work_queue.value,
path=path,
infrastructure=infrastructure,
tags=tags,
skip_upload=True,
)
deployment.apply()
Jason Noxon
05/02/2023, 12:34 PMVadym Dytyniak
05/02/2023, 12:36 PM