How to Migrate from NGINX Ingress Controller to NGINX Gateway Fabric (Configmap) #4430
-
|
Hi, I’m planning to migrate from the NGINX Ingress Controller to NGINX Gateway Fabric.
To apply equivalent behavior in NGINX Gateway Fabric, I believe the following approach makes sense:
helm install ngf oci://ghcr.io/nginx/charts/nginx-gateway-fabric \
--create-namespace -n nginx-gateway \
--set nginxGateway.snippetsFilters.enable=true
spec.keepAlive.timeout.server = "600"
I’d appreciate it if someone could confirm whether my understanding of items 1–3 is correct, and also explain how to handle items 4 and 5. For reference, I know that ClientSettingsPolicy currently supports the following fields: body.maxSize
body.timeout
keepAlive.requests
keepAlive.time
keepAlive.timeoutPlease note that sentences may be strange due to the use of a translator. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
|
Hey @jinhee6930, thanks for your interest in NGF! You’re correct about options 1–3. For option 4–style directives, you can use the snippetsFilter API today to set I’m not sure what your exact header-forwarding use case is, but you might be able to achieve what you want with the XForwardedFor mode. |
Beta Was this translation helpful? Give feedback.
Hey @jinhee6930, thanks for your interest in NGF!
You’re correct about options 1–3. For option 4–style directives, you can use the snippetsFilter API today to set
proxy-read-timeoutandproxy-send-timeout.I’m not sure what your exact header-forwarding use case is, but you might be able to achieve what you want with the XForwardedFor mode.