Complete the code to set the minimum number of container app replicas.
minReplicas: [1]Setting minReplicas to 0 allows the container app to scale down to zero instances when idle.
Complete the code to set the maximum number of container app replicas.
maxReplicas: [1]Setting maxReplicas to 10 limits the container app to scale up to 10 instances.
Fix the error in the CPU-based scaling rule threshold value.
cpu: [1]The CPU threshold should be a percentage between 0 and 100 representing % of CPU usage (e.g., 75).
Fill both blanks to configure HTTP request-based scaling with correct values.
http: {
concurrency: [1],
requestsPerSecond: [2]
}Concurrency is set to 10 and requests per second to 100 for balanced scaling.
Fill all three blanks to define a scaling rule with CPU, memory, and HTTP triggers.
scalingRules: {
cpuThreshold: [1],
memoryThreshold: [2],
httpRequests: [3]
}CPU threshold is 65%, memory threshold 80%, and HTTP requests trigger at 150 requests per second.