Bird
0
0

Given this Ingress annotation snippet:

medium📝 Command Output Q4 of 15
Kubernetes - Ingress
Given this Ingress annotation snippet:
metadata:
  annotations:
    nginx.ingress.kubernetes.io/proxy-read-timeout: "60"
What effect does this annotation have?
AEnables SSL redirect after 60 seconds
BSets the timeout for reading a response from the backend to 60 seconds
CSets the timeout for establishing a connection to the backend to 60 seconds
DLimits the number of connections to 60
Step-by-Step Solution
Solution:
  1. Step 1: Understand the meaning of proxy-read-timeout

    This annotation sets how long the Ingress controller waits to read the response from the backend service.
  2. Step 2: Interpret the value "60"

    The value "60" means 60 seconds timeout for reading the backend response.
  3. Final Answer:

    Sets the timeout for reading a response from the backend to 60 seconds -> Option B
  4. Quick Check:

    proxy-read-timeout controls response read time [OK]
Quick Trick: proxy-read-timeout sets backend response wait time [OK]
Common Mistakes:
  • Confusing read timeout with connection timeout
  • Thinking it enables SSL redirect
  • Assuming it limits connections

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes