Hello, To increase the Nginx timeout in an abctl ...
# ask-ai
u
Hello, To increase the Nginx timeout in an abctl deployment, you can edit the ingress definition. Here's how you can do it: 1. Run the following command to edit the ingress definition:
Copy code
shell kubectl --kubeconfig ~/.airbyte/abctl/abctl.kubeconfig --namespace airbyte-abctl edit <http://ingresses.networking.k8s.io|ingresses.networking.k8s.io> ingress-abctl
2. Add the following annotations to increase the proxy timeouts:
Copy code
yaml metadata:   annotations:     <http://nginx.ingress.kubernetes.io/proxy-connect-timeout|nginx.ingress.kubernetes.io/proxy-connect-timeout>: "300"     <http://nginx.ingress.kubernetes.io/proxy-read-timeout|nginx.ingress.kubernetes.io/proxy-read-timeout>: "300"     <http://nginx.ingress.kubernetes.io/proxy-send-timeout|nginx.ingress.kubernetes.io/proxy-send-timeout>: "300"
This will set the timeouts to 300 seconds. You can adjust these values as per your requirements. Please note that these changes will only take effect after you save the changes and exit the editor. For more information, you can refer to this [Github issue](https://github.com/airbytehq/airbyte/issues/45156). I hope this helps! Let me know if you have any other questions.