-
Notifications
You must be signed in to change notification settings - Fork 101
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
Fix local playground setup #532
Conversation
Don't create service and don't point publish service to it. Istead use node IPs as Ingress address Signed-off-by: Dinar Valeev <[email protected]>
fixes #528 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to merge assuming we create additional Issue to cover the problematic e2e scenario with terratest.
@kuritka do you agree to handle it separately assuming that make test-round-robin
is green now?
@k0da sorry if I missed it, was the issue for terratest extension created before the merge? |
related to #532 terratest guarantees that ingress IP's are compatible with node internal IP's | | k3d-test-gslb1 | k3d-test-gslb2 | |--------------------|-----------------------------|-----------------------------| | server-0 | `192.168.16.2` | `192.168.16.4` | | agent-0 | `192.168.16.3` | `192.168.16.5` | | test-gslb-failover | `192.168.16.4,192.168.16.5` | `192.168.16.4,192.168.16.5` | | test-gslb | `192.168.16.2,192.168.16.3` | `192.168.16.2,192.168.16.3` | Signed-off-by: kuritka <[email protected]>
@k0da thank you 👍 |
Don't create service and don't point publish service to it. Istead use
node IPs as Ingress address
Signed-off-by: Dinar Valeev [email protected]