-
Notifications
You must be signed in to change notification settings - Fork 0
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
Missing extension types #2
Comments
Hey @radriaanse, thanks for trying it out. https://github.com/envoyproxy/envoy/blob/637e858493b2883caf8298042800e839583cee3a/api/envoy/config/bootstrap/v3/bootstrap.proto#L18 has a ref to the bits in |
Hey @radriaanse, please check the latest publish which now includes extensions |
Works like a charm ❤️ Followup question, it's probably not possible to get the value of things like the filter name and URL, right? Would be nice if that's an option though, allowing you to do something like; envoy.config.listener.v3.Filter.withName('test')
+ envoy.config.listener.v3.Filter.withTypedConfig(
envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
) yielding: {
"name": "test",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager"
}
} |
Would you like to file it on upstream https://github.com/splunk/protobuf-jsonnet? Even better if you'd like to submit an enhancement :) |
Thanks for the great library!
One thing I noticed however is that, besides the
envoy.extensions.transport_sockets.tls.v3
, all other extensions appear to be missing from the generated output; and that transport_socket extension also misses some fields (UpstreamTlsContext
i.e.).I don't see any apparent difference between the proto definitions, do you know why the generation isn't including them?
The text was updated successfully, but these errors were encountered: