File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ def deploy(self, release):
342342 self .save ()
343343
344344 # see if the app config has deploy batch preference, otherwise use global
345- batches = release .config .values .get ('DEPLOY_BATCHES ' , settings .DEPLOY_BATCHES )
345+ batches = release .config .values .get ('DEIS_DEPLOY_BATCHES ' , settings .DEIS_DEPLOY_BATCHES )
346346
347347 # deploy application to k8s. Also handles initial scaling
348348 deploys = {}
Original file line number Diff line number Diff line change 273273# Defaults to None, the default is to deploy to as many nodes as
274274# the application has been instructed to run on
275275# Can also be overwritten on per app basis if desired
276- DEPLOY_BATCHES = os .environ .get ('DEPLOY_BATCHES ' , None )
276+ DEIS_DEPLOY_BATCHES = os .environ .get ('DEIS_DEPLOY_BATCHES ' , None )
277277
278278# How long k8s waits for a pod to finish work after a SIGTERM before sending SIGKILL
279279KUBERNETES_POD_TERMINATION_GRACE_PERIOD_SECONDS = int (os .environ .get ('KUBERNETES_POD_TERMINATION_GRACE_PERIOD_SECONDS' , 30 )) # noqa
You can’t perform that action at this time.
0 commit comments