Hi Folks: I am trying to understand details of module.yaml. The documentation at (https://nightlies.apache.org/flink/flink-statefun-docs-release-3.2/docs/modules/overview/) is just one example and I am trying to find out what are other kinds that can be configured. Also, in the greeter example (https://github.com/apache/flink-statefun-playground/blob/main/java/greeter/module.yaml), the module is as follows: kind: io.statefun.endpoints.v2/httpspec: functions: greeter.fns/* urlPathTemplate: http://greeter-functions:1108/ transport: type: io.statefun.transports.v1/async---kind: io.statefun.playground.v1/ingressspec: port: 8090---kind: io.statefun.playground.v1/egressspec: port: 8091 topics: - greetings Questions: 1. How does the ingress component (kind:io.statefun.playground.v1/ingress) get initialized to listen to port 8090 and same for egress (kind: io.statefun.playground.v1/egress)?2. How does the ingress get linked to the http component ?3. Finally is there a description of how does module.yaml map to embedded functions initialization which uses spi ? Thanks
