-
Notifications
You must be signed in to change notification settings - Fork 351
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
host2regex: doesn't take in consideration *
#3296
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Mustafa Abdelrahman <[email protected]>
Signed-off-by: Mustafa Abdelrahman <[email protected]>
Signed-off-by: Mustafa Abdelrahman <[email protected]>
maybe it's not a good idea to have this at all |
}, | ||
} { | ||
t.Run(ti.msg, func(t *testing.T) { | ||
regex := createHostRx(ti.host) |
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.
another idea is to update validation webhook to say if the host regex is valid
@@ -0,0 +1,3 @@ | |||
kube_foo__qux____example_org_____qux: | |||
Host("^([a-z0-9]+(-[a-z0-9]+)?[.]example[.]org[.]?(:[0-9]+)?)$") && PathSubtree("/") |
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.
I think you want
^([a-z0-9][a-z0-9-]*)?[.]example....
Better also to write down in the issue what kind of match or regexp you want to create.
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.
I want to match a valid hostname, it can't end or start with -
I think this ([a-z0-9][a-z0-9-]*)
can end with -
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.
What about foo-bar-qux.example , that your regexp doesn't match?
maybe:
^[a-z0-9]([a-z0-9-]*[a-z0-9])?[.]example....
Not sure if we need the capture group for the full first part of the hostname.
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.
updated the PR to match it, the new regex [a-z0-9]+((-[a-z0-9]+)?)*
Signed-off-by: Mustafa Abdelrahman <[email protected]>
See #3297 (comment) |
A problem with the current implementation is that a request can flap between 2 or more routes request to
|
@@ -15,6 +15,9 @@ func createHostRx(hosts ...string) string { | |||
|
|||
hrx := make([]string, len(hosts)) | |||
for i, host := range hosts { | |||
if strings.HasPrefix(host, "*.") { | |||
host = strings.Replace(host, "*", "[a-z0-9]+((-[a-z0-9]+)?)*", 1) |
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.
We need to verify this matches behaviour descibed at https://kubernetes.io/docs/concepts/services-networking/ingress/#hostname-wildcards
Makes sense to add this link as a comment.
Subdomain regexp looks strange with two capture groups using ? followed by *.
I guess subdomain shoud start and end with alphanumeric (not dash). Lets check this https://stackoverflow.com/questions/7930751/regexp-for-subdomain and similar answers and reuse/adopt regexp from there.
converting host from Ingress/RouteGroup for
Host
predicate doesn't take into consideration that Ingress support wildcard hostnames (see https://kubernetes.io/docs/concepts/services-networking/ingress/#hostname-wildcards) and we produce invalid regexThis PR adds testcases to reproduce the error, requires fix before merging.
following ingress produce
Error:
fixes #3297