cloudfoundry-incubator / fissile

Turn a BOSH release into container images / files
Apache License 2.0
67 stars 36 forks source link

Services generated by fissile make Istio malfunction #510

Open giner opened 5 years ago

giner commented 5 years ago

When Istio is in use on a Kubenrnetes cluster, port names of all Services have to follow the naming convention required by Istio. This is also true when the components generated by fissile are not using Istio themselves. While this can be considered a design flaw and might be fixed in future we have to deal with it somehow in the meanwhile.

Here are a couple of things that could be done to mitigate the issue:

cc: @iandyh @viovanov

Update:

zhanggbj commented 5 years ago

Another problem related to the port definition is some role in scf have conflict port number with Istio component, which should be avoided. https://istio.io/docs/setup/kubernetes/additional-setup/requirements/#ports-used-by-istio

For e.g.,

Which is conflicting with Istio Mixer

9090 HTTP Prometheus Prometheus
9091 HTTP Mixer Policy/Telemetry
giner commented 5 years ago

@zhanggbj, exportTo should help to avoid the conflict as I understand it now.