Azure / container-apps-deploy-action

GitHub Action for building and deploying Azure Container Apps
MIT License
50 stars 30 forks source link

Support configuration of scalers #93

Open heddendorp opened 7 months ago

heddendorp commented 7 months ago

It would be cool to change the min and max instances as well as the scaling behavior in the action.

mjanschek commented 3 weeks ago

This should be possible using a yaml for configuration like

[...]
  template:
    containers:
      - image: your_image
        name: your_container_app
    scale:
      minReplicas: 1
      maxReplicas: 3
    rules:
      - name: httpscalingrule
        custom:
          type: http
          metadata:
            concurrentRequests: "50"
[...]