-
Notifications
You must be signed in to change notification settings - Fork 361
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
Don't switch container port #3226
Comments
In some scenarios, we actually do need to use the listener port as the container port, we can add a field to control this behavior. |
@arkodg I'm not sure aboute this PR. My not-so-authoritative opinion:
...
envoyService:
disable: true
useListenerPortAsContainerPort: true Which looks strange to me)
|
If someone can create name for this options in field |
@zvlb would be great if you can take #2405 forward (as a new PR)
|
fixed with #3333 |
I continue to work on the possibility of using Envoy Gateway on bare metal installations of Kubernetes. In my case, services with the LoadBalancer type are not available in the cluster, so I need to launch containers on the required ports (which are specified in the CR Gateway) without executing logic in the servicePortToContainerPort function.
At the moment, I see two solutions:
servicePortToContainerPort
. I'm not very fond of this option because if I need multiple Gateways, not all of which should haveCAP_NET_BIND_SERVICE
, there will be problems.Do you have any other suggestions? I can implement the agreed functionality.
The text was updated successfully, but these errors were encountered: