-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[nginx] Nginx template duplicates upstreams. #455
Comments
@Farit-Biktimirov please check if the image |
This was referenced Mar 16, 2017
@aledbf that is awesome. I'll try image noted above. |
Could this be connected with #448 ? EDIT: You beat me to it. |
@MaikuMori yes. With #456, this and #448 are fixed |
@MaikuMori please test quay.io/aledbf/nginx-ingress-controller:0.78 to confirm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it a normal behaviour for nginx templator to duplicate upstreams:
upstream qa-service-health-port {
least_conn;
server 10.12.16.8:18080 max_fails=0 fail_timeout=0;
server 10.12.16.8:18080 max_fails=0 fail_timeout=0;
server 10.12.16.8:18080 max_fails=0 fail_timeout=0;
server 10.12.16.8:18080 max_fails=0 fail_timeout=0;
server 10.13.192.4:18080 max_fails=0 fail_timeout=0;
server 10.13.192.4:18080 max_fails=0 fail_timeout=0;
server 10.13.192.4:18080 max_fails=0 fail_timeout=0;
server 10.13.192.4:18080 max_fails=0 fail_timeout=0;
}
Is there any workaround to mitigate that?
The text was updated successfully, but these errors were encountered: