knative-report/functions/scaling/sleep-py-concurrency.yml

22 lines
682 B
YAML
Raw Normal View History

2020-02-18 21:46:31 +01:00
apiVersion: serving.knative.dev/v1alpha1
kind: Service
metadata:
name: sleep-py-sc
namespace: default
spec:
template:
metadata:
annotations:
# Knative concurrency-based autoscaling (default).
autoscaling.knative.dev/class: kpa.autoscaling.knative.dev
autoscaling.knative.dev/metric: concurrency
# Target 10 requests in-flight per pod.
autoscaling.knative.dev/target: "10"
# Disable scale to zero with a minScale of 1.
autoscaling.knative.dev/minScale: "1"
# Limit scaling to 100 pods.
autoscaling.knative.dev/maxScale: "100"
spec:
containers:
- image: tormachris/sleep-python