Rodrigo Pereira Fraga
Results
2
comments of
Rodrigo Pereira Fraga
With Ribbon, you can consider this: https://github.com/spring-cloud/spring-cloud-kubernetes/pull/512#issuecomment-572561485
I've achieved that by changing the KubernetesServicesServerList. ``` @Override public List getUpdatedListOfServers() { final List result = new ArrayList(); final Service service = StringUtils.isNotBlank(this.namespace) ? this.client.services().inNamespace(this.namespace).withName(this.serviceId).get() : this.client.services().withName(this.serviceId).get(); if (...