The MarathonApiSimpleServiceDiscovery doesn't take the port name from the Lookup, it only takes it from the configuration. I fixed it with the same method that the kubernetes service uses
val portName = lookup.portName match {
case Some(name) => name
case None => settings.appPortName
}
The MarathonApiSimpleServiceDiscovery doesn't take the port name from the Lookup, it only takes it from the configuration. I fixed it with the same method that the kubernetes service uses
I could make the PR if you'd like