Azure ARM Templates to deploy WebJobs

前端 未结 4 2111
清歌不尽
清歌不尽 2021-01-11 14:01

Everyone,

Could anyone please help me on deploying WebJobs using ARM Templates ?

Thanks, Rajaram.

4条回答
  •  长发绾君心
    2021-01-11 14:15

    The other answers cover the template aspect of getting the job created in Azure, but there's still the question of getting the webjob executable uploaded.

    Assuming this deploy is part of a larger Azure website deploy, you simply need to include your webjob executable in the distribution of your website.

    Per the kudu documentation the convention for placing your EXE is as follows:

    To deploy a triggered job copy your binaries to: app_data\jobs\triggered\{job name}

    To deploy a continuous job copy your binaries to: app_data\jobs\continuous\{job name}

提交回复
热议问题