In Runtime Fabric BYOK the behaviour expected in order not to have a Ingress mapping at the deploy /redeploy time is that if the configuration is
<http>
<inbound>
<publicUrl></publicUrl>
</inbound>
</http>
No ingress mapping will be created in the deployment and the application will not be exposed. In order to solve this we have to modify the class org.mule.tools.model.anypoint.Inbound.java by defaulting publicUrl to "" with
@Parameter(defaultValue = "")
protected String publicUrl = "";
In Runtime Fabric BYOK the behaviour expected in order not to have a Ingress mapping at the deploy /redeploy time is that if the configuration is
No ingress mapping will be created in the deployment and the application will not be exposed. In order to solve this we have to modify the class org.mule.tools.model.anypoint.Inbound.java by defaulting publicUrl to "" with