-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
add support for Ingress pathType #1772
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1772 +/- ##
==========================================
+ Coverage 47.14% 47.32% +0.18%
==========================================
Files 110 110
Lines 6033 6058 +25
==========================================
+ Hits 2844 2867 +23
- Misses 2926 2927 +1
- Partials 263 264 +1
Continue to review full report at Codecov.
|
1766796
to
66e2cce
Compare
/test pull-aws-load-balancer-controller-e2e-test |
2 similar comments
/test pull-aws-load-balancer-controller-e2e-test |
/test pull-aws-load-balancer-controller-e2e-test |
66e2cce
to
d8a4fc7
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: kishorj, M00nF1sh The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Add support for Ingress pathType introduced in K8s 1.18+: https://kubernetes.io/docs/concepts/services-networking/ingress/#path-types
ImplementationSpecific
PathType:Exact
PathType:Prefix
PathType:/
, the generated path pattern will be "/*"/abc/def
, the generated path pattern will be "/abc/def" and "/abc/def/*"/abc/def/
, the generated path pattern will be "/abc/def" and "/abc/def/*"Test done: