Heroku-在app.json中配置自动缩放

时间:2018-08-28 21:42:03

标签: heroku

关于如何在app.json中配置Heroku的自动缩放的任何想法吗?

instructions for Heroku dashboard web console,但我希望将其编写为脚本。

插件不起作用:

 "addons": [
    "@heroku-cli/plugin-ps",
    {
      "options": {
        "min": 2,
        "max": 4
    }
  ],

NB:Heroku的自动缩放是通过plugin进行的,因此无法用app.json addon key指定。

脚本不起作用:

  {
    "scripts": {
        "postdeploy": "heroku plugins:install @heroku-cli/plugin-ps && heroku ps:autoscale:enable --min 2 --max 10 --p95=1000"
     }
  },

0 个答案:

没有答案